From 8a85f44ff6313cb1a475a9c50b076c3c37d88997 Mon Sep 17 00:00:00 2001 From: xuwenbo <717567226@qq.com> Date: Mon, 14 Sep 2020 21:01:28 +0800 Subject: [PATCH] =?UTF-8?q?yshop3.1=E6=AD=A3=E5=BC=8F=E5=8F=91=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 109 +- api/live.js | 17 + api/store.js | 4 +- api/user.js | 5 +- assets/css/base.css | 2 +- assets/css/base.less | 4 +- assets/css/reset.css | 2 +- assets/css/reset.less | 2 +- assets/css/style.css | 2 +- assets/css/style.css.map | 2 +- assets/css/style.less | 939 ++++++++-- components/Adv.vue | 207 +++ components/Loading.vue | 26 +- components/Menu.vue | 155 ++ components/PromotionGood.vue | 230 ++- components/ShopLiveCard.vue | 327 ++++ components/StorePoster.vue | 343 ++-- components/UserEvaluation.vue | 78 +- components/sh-activity-goods.vue | 40 + components/sh-adv.vue | 256 +++ components/sh-groupon.vue | 197 ++ config/index.js | 8 +- libs/order.js | 164 +- libs/wechat.js | 25 +- main.js | 2 + manifest.json | 11 +- package-lock.json | 34 + package.json | 5 + pages.json | 28 +- pages/Loading/index.vue | 15 +- pages/activity/DargainDetails/index.vue | 928 +++++----- .../GoodsGroup/children/activity-card.vue | 101 ++ pages/activity/GoodsGroup/index.vue | 298 +++- pages/activity/GoodsSeckill/index.vue | 384 ++-- pages/activity/GroupDetails/index.vue | 657 ++++--- pages/activity/GroupRule/index.vue | 4 +- pages/activity/Poster/index.vue | 128 +- pages/activity/SeckillDetails/index.vue | 536 ++++-- pages/authorization/index.vue | 339 ++-- pages/home/components/Banner.vue | 173 ++ pages/home/components/FirstNewProduct.vue | 216 +++ pages/home/components/HotCommodity.vue | 219 +++ pages/home/components/Live.vue | 249 +++ pages/home/components/ProductsRecommended.vue | 215 +++ pages/home/components/PromoteProduct.vue | 216 +++ pages/home/index.vue | 332 ++-- pages/order/OrderDetails/index.vue | 13 +- pages/order/OrderSubmission/index.vue | 735 ++++---- pages/orderAdmin/AdminOrder/index.vue | 7 +- pages/orderAdmin/AdminOrderList/index.vue | 9 +- pages/shop/GoodsCollection/index.vue | 3 +- pages/shop/GoodsCon/index.vue | 1581 +++++++++-------- pages/shop/GoodsFoot/index.vue | 102 ++ pages/shop/Live/LiveList/index.vue | 182 ++ pages/shop/ShoppingCart/index.vue | 735 ++++---- pages/shop/StoreList/index.vue | 19 +- pages/user/Login/index.vue | 443 ++--- pages/user/PersonalData/index.vue | 17 +- pages/user/Recharge/index.vue | 609 ++++--- pages/user/User/index.vue | 520 +++--- pages/user/UserAccount/index.vue | 8 +- pages/user/address/AddAddress/index.vue | 25 +- pages/user/promotion/Poster/index.vue | 253 ++- pages/user/promotion/UserCash/index.vue | 339 ++-- pages/user/promotion/UserPromotion/index.vue | 1 - static/images/logo_bg.png | Bin 0 -> 7966 bytes static/images/title1.png | Bin 0 -> 2238 bytes store/index.js | 12 +- uni.css | 510 ++++++ uni.css.map | 9 + uni.min.css | 1 + uni.scss | 56 +- utils/index.js | 155 +- utils/request.js | 8 +- 74 files changed, 9953 insertions(+), 4633 deletions(-) create mode 100644 api/live.js create mode 100644 components/Adv.vue create mode 100644 components/Menu.vue create mode 100644 components/ShopLiveCard.vue create mode 100644 components/sh-activity-goods.vue create mode 100644 components/sh-adv.vue create mode 100644 components/sh-groupon.vue create mode 100644 pages/activity/GoodsGroup/children/activity-card.vue create mode 100644 pages/home/components/Banner.vue create mode 100644 pages/home/components/FirstNewProduct.vue create mode 100644 pages/home/components/HotCommodity.vue create mode 100644 pages/home/components/Live.vue create mode 100644 pages/home/components/ProductsRecommended.vue create mode 100644 pages/home/components/PromoteProduct.vue create mode 100644 pages/shop/GoodsFoot/index.vue create mode 100644 pages/shop/Live/LiveList/index.vue create mode 100644 static/images/logo_bg.png create mode 100644 static/images/title1.png create mode 100644 uni.css create mode 100644 uni.css.map create mode 100644 uni.min.css diff --git a/App.vue b/App.vue index 31ec6d0..09a834b 100644 --- a/App.vue +++ b/App.vue @@ -1,24 +1,91 @@ - - + + +/*每个页面公共css */ +@import "animate.css"; +@import "./assets/iconfont/iconfont.css"; +@import "./assets/css/base.less"; +@import "./assets/css/reset.less"; +@import "./assets/css/style.less"; + diff --git a/api/live.js b/api/live.js new file mode 100644 index 0000000..33c0d81 --- /dev/null +++ b/api/live.js @@ -0,0 +1,17 @@ + + +import request from "@/utils/request"; + +/** + * 查询所有直播间 + */ +export function yxWechatLive(data) { + return request.get("/yxWechatLive", data, { login: true }); +} + +/** + * 获取直播回放 + */ +export function getLiveReplay(id, data) { + return request.get("/yxWechatLive/getLiveReplay/" + id, data, { login: false }); +} diff --git a/api/store.js b/api/store.js index 53fcdcf..40beae6 100644 --- a/api/store.js +++ b/api/store.js @@ -75,8 +75,8 @@ export function getGroomList(type) { /* * 获取商品海报 * */ -export function getProductPoster(id) { - return request.get("/product/poster/" + id, {}, { +export function getProductPoster(id, data) { + return request.get("/product/poster/" + id, data, { login: true }); } diff --git a/api/user.js b/api/user.js index 47ccafa..ee3862d 100644 --- a/api/user.js +++ b/api/user.js @@ -186,10 +186,11 @@ export function postAddress(data) { /* * 获取收藏产品 * */ -export function getCollectUser(page, limit) { +export function getCollectUser(page, limit, type) { return request.get("/collect/user", { page: page, - limit: limit + limit: limit, + type }); } diff --git a/assets/css/base.css b/assets/css/base.css index eb0ba75..eb24673 100644 --- a/assets/css/base.css +++ b/assets/css/base.css @@ -1,2 +1,2 @@ -@charset "UTF-8";.font-color-red{color:#eb3729 !important}.bg-color-red{background-color:#eb3729 !important}.icon-color{color:#eb3729}.cart-color{color:#eb3729 !important;border:1px solid #eb3729 !important}.padding20{padding:20rpx}.pad20{padding:0 20rpx}.padding30{padding:30rpx}.pad30{padding:0 30rpx}.acea-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.acea-row.row-middle{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.acea-row.row-top{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.acea-row.row-bottom{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.acea-row.row-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.acea-row.row-right{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.acea-row.row-left{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.acea-row.row-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.acea-row.row-around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.acea-row.row-column-around{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.acea-row.row-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.acea-row.row-column-between{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.acea-row.row-center-wrapper{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.acea-row.row-between-wrapper{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.slider-banner{position:relative;width:100%;overflow:hidden}.slider-banner .swiper-container{height:100%}.slider-banner image{display:block;width:100%;height:100%}.start{width:122rpx;height:30rpx;background-image:url("https://h5.yixiang.co/static/images/start.png");background-repeat:no-repeat;-webkit-background-size:122rpx auto;background-size:122rpx auto}.start.star5{background-position:0 3rpx}.start.star4{background-position:0 -30rpx}.start.star3{background-position:0 -70rpx}.start.star2{background-position:0 -105rpx}.start.star1{background-position:0 -140rpx}.start.star0{background-position:0 -175rpx}.checkbox-wrapper{position:relative}.checkbox-wrapper input{display:none}.checkbox-wrapper .icon{position:absolute;left:0;top:50%;display:inline-block;width:18px;height:18px;border:1px solid #cccccc;-webkit-border-radius:50%;border-radius:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%)}.checkbox-wrapper input:checked+.icon{background-color:#e93323;border-color:#e93323;background-image:url("https://h5.yixiang.co/static/images/enter.png");-webkit-background-size:21rpx 15rpx;background-size:21rpx 15rpx;background-repeat:no-repeat;background-position:center center}.Loads{height:80rpx;font-size:25rpx;color:#000}.Loads .iconfont{font-size:30rpx;margin-right:10rpx;height:32rpx;line-height:32rpx}@-webkit-keyframes load{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.loadingpic{-webkit-animation:load 3s linear 1s infinite;animation:load 3s linear 1s infinite}.loading{-webkit-animation:load linear 1s infinite;animation:load linear 1s infinite} +@charset "UTF-8";.font-color-red{color:#eb3729 !important}.bg-color-red{background-color:#eb3729 !important}.icon-color{color:#eb3729}.cart-color{color:#eb3729 !important;border:1px solid #eb3729 !important}.padding20{padding:20rpx}.pad20{padding:0 20rpx}.padding30{padding:30rpx}.pad30{padding:0 30rpx}.acea-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.acea-row.row-middle{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.acea-row.row-top{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.acea-row.row-bottom{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.acea-row.row-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.acea-row.row-right{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.acea-row.row-left{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.acea-row.row-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.acea-row.row-around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.acea-row.row-column-around{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.acea-row.row-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.acea-row.row-column-between{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.acea-row.row-center-wrapper{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.acea-row.row-between-wrapper{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.slider-banner{position:relative;width:100%;overflow:hidden}.slider-banner .swiper-container{height:100%}.slider-banner image{display:block;width:100%;height:100%}.start{width:122rpx;height:30rpx;background-image:url("https://wx.yixiang.co/static/images/start.png");background-repeat:no-repeat;-webkit-background-size:122rpx auto;background-size:122rpx auto}.start.star5{background-position:0 3rpx}.start.star4{background-position:0 -30rpx}.start.star3{background-position:0 -70rpx}.start.star2{background-position:0 -105rpx}.start.star1{background-position:0 -140rpx}.start.star0{background-position:0 -175rpx}.checkbox-wrapper{position:relative}.checkbox-wrapper input{display:none}.checkbox-wrapper .icon{position:absolute;left:0;top:50%;display:inline-block;width:18px;height:18px;border:1px solid #cccccc;-webkit-border-radius:50%;border-radius:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%)}.checkbox-wrapper input:checked+.icon{background-color:#e93323;border-color:#e93323;background-image:url("https://wx.yixiang.co/static/images/enter.png");-webkit-background-size:21rpx 15rpx;background-size:21rpx 15rpx;background-repeat:no-repeat;background-position:center center}.Loads{height:80rpx;font-size:25rpx;color:#000}.Loads .iconfont{font-size:30rpx;margin-right:10rpx;height:32rpx;line-height:32rpx}@-webkit-keyframes load{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.loadingpic{-webkit-animation:load 3s linear 1s infinite;animation:load 3s linear 1s infinite}.loading{-webkit-animation:load linear 1s infinite;animation:load linear 1s infinite} /*# sourceMappingURL=./base.css.map */ \ No newline at end of file diff --git a/assets/css/base.less b/assets/css/base.less index f7c5a9e..35228f9 100644 --- a/assets/css/base.less +++ b/assets/css/base.less @@ -104,7 +104,7 @@ .start { width: 1.22*100rpx; height: 0.3*100rpx; - background-image: url("https://h5.yixiang.co/static/images/start.png"); + background-image: url("https://wx.yixiang.co/static/images/start.png"); background-repeat: no-repeat; background-size: 1.22*100rpx auto; } @@ -147,7 +147,7 @@ .checkbox-wrapper input:checked + .icon { background-color: #e93323; border-color: #e93323; - background-image: url("https://h5.yixiang.co/static/images/enter.png"); + background-image: url("https://wx.yixiang.co/static/images/enter.png"); background-size: 0.21*100rpx 0.15*100rpx; background-repeat: no-repeat; background-position: center center; diff --git a/assets/css/reset.css b/assets/css/reset.css index a7d368e..773fb4b 100644 --- a/assets/css/reset.css +++ b/assets/css/reset.css @@ -1,2 +1,2 @@ -input{line-height:normal;-webkit-box-sizing:border-box;box-sizing:border-box}@font-face{font-family:'GuildfordProBook 5';src:url('https://h5.yixiang.co/static/iconfont/GuildfordProBook5.otf')}[v-cloak]{display:none}.iconfont{font-size:36rpx}@media (-webkit-min-device-pixel-ratio:1.5),(min-device-pixel-ratio:1.5){.border-1px::after{-webkit-transform:scaleY(.7);-ms-transform:scaleY(.7);transform:scaleY(.7)}.border-1px::before{-webkit-transform:scaleY(.7);-ms-transform:scaleY(.7);transform:scaleY(.7)}}@media (-webkit-min-device-pixel-ratio:2),(min-device-pixel-ratio:2){.border-1px::after{-webkit-transform:scaleY(.5);-ms-transform:scaleY(.5);transform:scaleY(.5)}.border-1px::before{-webkit-transform:scaleY(.5);-ms-transform:scaleY(.5);transform:scaleY(.5)}}@media (-webkit-min-device-pixel-ratio:3),(min-device-pixel-ratio:3){.border-1px::after{-webkit-transform:scaleY(.33);-ms-transform:scaleY(.33);transform:scaleY(.33)}.border-1px::before{-webkit-transform:scaleY(.33);-ms-transform:scaleY(.33);transform:scaleY(.33)}}.line1{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;width:100%}.line2{word-break:break-all;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.mask{position:fixed;top:0;left:0;right:0;bottom:0;z-index:55;background-color:rgba(0,0,0,0.5)} +input{line-height:normal;-webkit-box-sizing:border-box;box-sizing:border-box}@font-face{font-family:'GuildfordProBook 5';src:url('https://wx.yixiang.co/static/iconfont/GuildfordProBook5.otf')}[v-cloak]{display:none}.iconfont{font-size:36rpx}@media (-webkit-min-device-pixel-ratio:1.5),(min-device-pixel-ratio:1.5){.border-1px::after{-webkit-transform:scaleY(.7);-ms-transform:scaleY(.7);transform:scaleY(.7)}.border-1px::before{-webkit-transform:scaleY(.7);-ms-transform:scaleY(.7);transform:scaleY(.7)}}@media (-webkit-min-device-pixel-ratio:2),(min-device-pixel-ratio:2){.border-1px::after{-webkit-transform:scaleY(.5);-ms-transform:scaleY(.5);transform:scaleY(.5)}.border-1px::before{-webkit-transform:scaleY(.5);-ms-transform:scaleY(.5);transform:scaleY(.5)}}@media (-webkit-min-device-pixel-ratio:3),(min-device-pixel-ratio:3){.border-1px::after{-webkit-transform:scaleY(.33);-ms-transform:scaleY(.33);transform:scaleY(.33)}.border-1px::before{-webkit-transform:scaleY(.33);-ms-transform:scaleY(.33);transform:scaleY(.33)}}.line1{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;width:100%}.line2{word-break:break-all;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.mask{position:fixed;top:0;left:0;right:0;bottom:0;z-index:55;background-color:rgba(0,0,0,0.5)} /*# sourceMappingURL=./reset.css.map */ \ No newline at end of file diff --git a/assets/css/reset.less b/assets/css/reset.less index 04cd780..7b85c8f 100644 --- a/assets/css/reset.less +++ b/assets/css/reset.less @@ -1,7 +1,7 @@ input{line-height: normal; box-sizing:border-box;} @font-face { font-family: 'GuildfordProBook 5'; - src: url('https://h5.yixiang.co/static/iconfont/GuildfordProBook5.otf'); + src: url('https://wx.yixiang.co/static/iconfont/GuildfordProBook5.otf'); } [v-cloak] { display: none; diff --git a/assets/css/style.css b/assets/css/style.css index d584693..50e6191 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1,2 +1,2 @@ -page{background:#f5f5f5}.newsList .newsSwitch .van-hairline--top-bottom::after{border:0}.newsList .newsSwitch .van-tab{font-size:32rpx;padding:0;-webkit-flex-basis:unset !important;-ms-flex-preferred-size:unset !important;flex-basis:unset !important;margin-right:46rpx}.newsList .newsSwitch .van-tabs__wrap{padding:0 30rpx}.newsList .newsSwitch.van-tabs--line{padding-top:90rpx}#footer{position:fixed;width:100%;height:100rpx;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:9999}#footer.iphonex-footer{height:100rpx;padding-bottom:68rpx}.footer-bg{height:100rpx}.iphonex-footer-bg{height:168rpx}#footer .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:20rpx;color:#282828}#footer .item.on{color:#eb3729}#footer .item .iconfont{font-size:45rpx;height:55rpx;line-height:55rpx}.goodList .item{position:relative;padding-left:30rpx;background-color:#fff}.goodList .item .pictrue{width:180rpx;height:180rpx;position:relative}.goodList .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodList .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodList .item .pictrue .numPic{position:absolute;left:7rpx;top:7rpx;width:50rpx;height:50rpx;-webkit-border-radius:50%;border-radius:50%}.goodList .item .underline{padding:30rpx 30rpx 30rpx 0;border-bottom:1px solid #f5f5f5}.goodList .item:nth-last-child(1) .underline{border-bottom:0}.goodList .item .text{font-size:30rpx;color:#222;width:489rpx;text-align:left}.goodList .item .text .money .num{font-size:34rpx}.goodList .item .text .vip-money{font-size:24rpx;color:#282828;font-weight:bold;margin-top:10rpx}.goodList .item .text .vip-money .vip{margin-right:22rpx;text-decoration:line-through}.goodList .item .text .vip-money .image{width:46rpx;height:21rpx;margin-left:5rpx}.goodList .item .text .vip-money .num{font-size:22rpx;color:#aaa;font-weight:normal;margin:-2rpx 0 0 0}.goodList .item .iconfont{position:absolute;right:30rpx;width:50rpx;height:50rpx;-webkit-border-radius:50%;border-radius:50%;font-size:30rpx;bottom:38rpx}.promotionGood{padding:0 30rpx;background-color:#fff}.promotionGood .item{border-bottom:1px solid #eee;height:250rpx}.promotionGood .item .pictrue{width:188rpx;height:188rpx}.promotionGood .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:8rpx;border-radius:8rpx}.promotionGood .item .text{font-size:24rpx;color:#999;width:472rpx;text-align:left}.promotionGood .item .text .name{font-size:30rpx;color:#333}.promotionGood .item .text .sp-money{margin:34rpx 0 20rpx 0}.promotionGood .item .text .sp-money .moneyCon{height:36rpx;line-height:46rpx;font-size:26rpx;color:#ea3526;-webkit-border-radius:24rpx 3rpx 24rpx 3rpx;border-radius:24rpx 3rpx 24rpx 3rpx}.promotionGood .item .text .sp-money .moneyCon .num{font-size:24rpx}.promotionGood .item .text .money{text-decoration:line-through}.recommend{background-color:#fff}.recommend .title{height:135rpx;font-size:28rpx;color:#282828}.recommend .title .name{margin:0 28rpx}.recommend .title .iconfont{font-size:170rpx;color:#454545;height:50rpx;line-height:50rpx}.recommend .title .iconfont.lefticon{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.recommend .recommendList{padding:0 30rpx}.recommend .recommendList .item{width:335rpx;margin-bottom:30rpx}.recommend .recommendList .item .pictrue{width:100%;height:335rpx}.recommend .recommendList .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.recommend .recommendList .item .name{font-size:28rpx;color:#282828;margin-top:20rpx}.recommend .recommendList .item .money{font-size:20rpx;margin-top:3rpx}.recommend .recommendList .item .money .num{font-size:28rpx}.noCommodity{padding-top:75rpx}.noCommodity .noPictrue{width:414rpx;height:336rpx;margin:0 auto 30rpx auto}.noCommodity .noPictrue .image{width:100%;height:100%}.product-bg{height:750rpx}.product-bg swiper{height:750rpx}.product-bg .slide-image{width:100%;height:100%}.product-bg .pages{position:absolute;background-color:#fff;height:34rpx;padding:0 10rpx;-webkit-border-radius:3rpx;border-radius:3rpx;right:30rpx;bottom:30rpx;line-height:34rpx;font-size:24rpx;color:#050505;z-index:9}.evaluateWtapper .evaluateItem{background-color:#fff;padding-bottom:25rpx}.evaluateWtapper .evaluateItem~.evaluateItem{border-top:1px solid #f5f5f5}.evaluateWtapper .evaluateItem .pic-text{font-size:26rpx;color:#282828;height:95rpx;padding:0 30rpx}.evaluateWtapper .evaluateItem .pic-text .pictrue{width:56rpx;height:56rpx;margin-right:20rpx}.evaluateWtapper .evaluateItem .pic-text .pictrue .image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.evaluateWtapper .evaluateItem .pic-text .name{max-width:450rpx;margin-right:15rpx}.evaluateWtapper .evaluateItem .time{font-size:24rpx;color:#82848f;padding:0 30rpx}.evaluateWtapper .evaluateItem .evaluate-infor{font-size:28rpx;color:#282828;margin-top:19rpx;padding:0 30rpx}.evaluateWtapper .evaluateItem .imgList{padding:0 30rpx 0 15rpx;margin-top:25rpx}.evaluateWtapper .evaluateItem .imgList .pictrue{width:156rpx;height:156rpx;margin:0 0 15rpx 15rpx}.evaluateWtapper .evaluateItem .imgList .pictrue .image{width:100%;height:100%}.evaluateWtapper .evaluateItem .reply{font-size:26rpx;color:#454545;background-color:#f7f7f7;-webkit-border-radius:5rpx;border-radius:5rpx;margin:20rpx 30rpx 0 30rpx;padding:30rpx;position:relative}.evaluateWtapper .evaluateItem .reply::before{content:"";width:0;height:0;border-left:10rpx solid transparent;border-right:10rpx solid transparent;border-bottom:20rpx solid #f7f7f7;position:absolute;top:-20rpx;left:100rpx}.coupon-list{padding:0 30rpx;margin-top:25rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.coupon-list .item{width:100%;height:170rpx;margin-bottom:16rpx}.coupon-list .item .money{background-image:url('https://h5.yixiang.co/static/images/coupon1.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:240rpx;height:100%;color:#fff;font-size:36rpx;font-weight:bold;text-align:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.coupon-list .item .money.moneyGray{background-image:url('https://h5.yixiang.co/static/images/coupon2.png')}.coupon-list .item .money .num{font-size:60rpx}.coupon-list .item .text{width:450rpx;padding:0 17rpx 0 24rpx;background-color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box}.coupon-list .item .text .condition{font-size:30rpx;color:#282828;height:93rpx;line-height:93rpx;border-bottom:1px solid #f0f0f0}.coupon-list .item .text .data{font-size:20rpx;color:#999;height:76rpx}.coupon-list .item .text .data .bnt{width:136rpx;height:44rpx;-webkit-border-radius:22rpx;border-radius:22rpx;font-size:22rpx;color:#fff;text-align:center;line-height:44rpx}.coupon-list .item .text .data .bnt.gray{background-color:#ccc}.condition .line-title{width:90rpx;height:30rpx;line-height:30rpx;padding:0 10rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff7f7;border:1rpx solid #e83323;opacity:1;-webkit-border-radius:22rpx;border-radius:22rpx;font-size:20rpx !important;color:#e83323;margin-right:12rpx}.coupon-list .pic-num{color:#ffffff !important;font-size:24rpx !important}.coupon-list-window{position:fixed;bottom:0;left:0;width:100%;background-color:#f5f5f5;-webkit-border-radius:16rpx 16rpx 0 0;border-radius:16rpx 16rpx 0 0;z-index:111;transition:all .3s cubic-bezier(.25, .5, .5, .9);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transform:translate3d(0, 100%, 0);-webkit-transform:translate3d(0, 100%, 0);-ms-transform:translate3d(0, 100%, 0);-moz-transform:translate3d(0, 100%, 0);-o-transform:translate3d(0, 100%, 0)}.coupon-list-window.on{transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0)}.coupon-list-window .title{height:124rpx;width:100%;text-align:center;line-height:124rpx;font-size:32rpx;font-weight:bold;position:relative;color:#333}.coupon-list-window .title .iconfont{position:absolute;right:30rpx;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);font-size:35rpx;color:#8a8a8a;font-weight:normal}.coupon-list-window .coupon-list{margin:0 0 50rpx 0;height:550rpx;overflow:auto}.coupon-list-window .pictrue{width:414rpx;height:336rpx;margin:0 auto 50rpx auto}.coupon-list-window .pictrue .image{width:100%;height:100%}.product-window{position:fixed;bottom:0;width:100%;left:0;background-color:#fff;z-index:88;-webkit-border-radius:16rpx 16rpx 0 0;border-radius:16rpx 16rpx 0 0;padding-bottom:140rpx;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.product-window.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.product-window .textpic{padding:0 130rpx 0 30rpx;margin-top:29rpx;position:relative}.product-window .textpic .pictrue{width:150rpx;height:150rpx}.product-window .textpic .pictrue .image{width:100%;height:100%;-webkit-border-radius:10rpx;border-radius:10rpx}.product-window .textpic .text{width:410rpx;font-size:32rpx;color:#202020}.product-window .textpic .text .money{font-size:24rpx;margin-top:40rpx}.product-window .textpic .text .money .num{font-size:36rpx}.product-window .textpic .text .money .stock{color:#999;margin-left:18rpx}.product-window .textpic .iconfont{position:absolute;right:30rpx;top:-5rpx;font-size:35rpx;color:#8a8a8a}.product-window .productWinList{max-height:395rpx;overflow:auto;margin-top:36rpx}.product-window .productWinList .item~.item{margin-top:36rpx}.product-window .productWinList .item .title{font-size:30rpx;color:#999;padding:0 30rpx}.product-window .productWinList .item .listn{padding:0 30rpx 0 16rpx}.product-window .productWinList .item .listn .itemn{border:1px solid #bbb;font-size:26rpx;color:#282828;padding:7rpx 33rpx;-webkit-border-radius:6rpx;border-radius:6rpx;margin:14rpx 0 0 14rpx}.product-window .productWinList .item .listn .itemn.on{color:#fff;background-color:#eb3729;border-color:#eb3729}.product-window .cart{margin-top:36rpx;padding:0 30rpx}.product-window .cart .title{font-size:30rpx;color:#999}.product-window .cart .carnum{height:54rpx;margin-top:24rpx}.product-window .cart .carnum .item{border:1px solid #a4a4a4;width:84rpx;text-align:center;height:100%;line-height:54rpx;color:#a4a4a4;font-size:45rpx}.product-window .cart .carnum .reduce{border-right:0;-webkit-border-radius:6rpx 0 0 6rpx;border-radius:6rpx 0 0 6rpx;line-height:48rpx}.product-window .cart .carnum .reduce.on{border-color:#e3e3e3;color:#dedede}.product-window .cart .carnum .plus{border-left:0;-webkit-border-radius:0 6rpx 6rpx 0;border-radius:0 6rpx 6rpx 0;line-height:46rpx}.product-window .cart .carnum .plus.on{border-color:#e3e3e3;color:#dedede}.product-window .cart .carnum .num{color:#282828;font-size:28rpx}.sharing-packets{position:fixed;left:30rpx;bottom:150rpx;z-index:5;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.sharing-packets.on{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);opacity:0}.sharing-packets .iconfont{width:44rpx;height:44rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#999;font-size:20rpx;color:#fff;margin:0 auto;padding-left:1rpx}.sharing-packets .line{width:2rpx;height:40rpx;background-color:#999;margin:0 auto}.sharing-packets .sharing-con{width:187rpx;height:210rpx;position:relative}.sharing-packets .sharing-con .image{width:100%;height:100%}.sharing-packets .sharing-con .text{position:absolute;top:20rpx;font-size:20rpx;width:100%;text-align:center}.sharing-packets .sharing-con .text .money{font-size:32rpx;font-weight:bold}.sharing-packets .sharing-con .text .money .label{font-size:20rpx}.sharing-packets .sharing-con .text .tip{font-size:18rpx;color:#999}.sharing-packets .sharing-con .text .shareBut{font-size:22rpx;color:#fff;margin-top:27rpx;height:50rpx;line-height:50rpx}.orderGoods{background-color:#fff;margin-top:12rpx}.orderGoods .total{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:86rpx;padding:0 30rpx;border-bottom:1rpx solid #eee;font-size:30rpx;color:#282828;line-height:86rpx}.goodWrapper .item{margin-left:30rpx;padding-right:30rpx;border-bottom:2rpx solid #f0f0f0;height:180rpx}.goodWrapper .item .pictrue{width:130rpx;height:130rpx}.goodWrapper .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodWrapper .item .text{width:537rpx;position:relative}.goodWrapper .item .text .name{font-size:28rpx;color:#282828;width:453rpx}.goodWrapper .item .text .num{font-size:26rpx;color:#868686}.goodWrapper .item .text .attr{font-size:20rpx;color:#868686;margin-top:7rpx}.goodWrapper .item .text .money{font-size:26rpx;margin-top:17rpx}.goodWrapper .item .text .evaluate{position:absolute;width:114rpx;height:46rpx;border:1px solid #e93323;color:#e93323;-webkit-border-radius:4rpx;border-radius:4rpx;text-align:center;line-height:46rpx;right:0;bottom:-10rpx}.goodWrapper .item .text .evaluate.userEvaluated{font-size:26rpx;color:#aaa;background-color:#f7f7f7;border-color:#f7f7f7}.address-window{background-color:#fff;position:fixed;bottom:0;left:0;width:100%;z-index:99;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.address-window.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.address-window .title{font-size:32rpx;font-weight:bold;text-align:center;height:123rpx;line-height:123rpx;position:relative;color:#333}.address-window .title .iconfont{position:absolute;right:30rpx;color:#8a8a8a;font-size:35rpx}.address-window .list{max-height:600rpx;overflow-y:auto;overflow-x:hidden}.address-window .list .item{margin-left:30rpx;padding-right:30rpx;border-bottom:1px solid #eee;height:129rpx;font-size:25rpx;color:#333}.address-window .list .item .iconfont{font-size:37rpx;color:#2c2c2c}.address-window .list .item .iconfont.icon-complete{font-size:30rpx;color:#fff}.address-window .list .item .addressTxt{width:560rpx}.address-window .list .item .addressTxt .name{font-size:28rpx;font-weight:bold;color:#282828;margin-bottom:4rpx}.address-window .list .item .addressTxt .name .phone{margin-left:18rpx}.address-window .addressBnt{font-size:30rpx;font-weight:bold;color:#fff;width:690rpx;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;text-align:center;line-height:86rpx;margin:85rpx auto}.address-window .pictrue{width:414rpx;height:336rpx;margin:80rpx auto}.address-window .pictrue .image{width:100%;height:100%}.swiper{height:282rpx}.swiper .slide-image{width:100%;height:100%}.swiper .swiper-pagination{text-align:right;padding-right:40rpx;bottom:10rpx;width:100%}.swiper .swiper-pagination-bullet{width:12rpx;height:12rpx;border:2rpx solid #fff;-webkit-border-radius:50%;border-radius:50%;background-color:rgba(0,0,0,0);opacity:1}.swiper .swiper-pagination-bullet~.swiper-pagination-bullet{margin-left:12rpx}.swiper .swiper-pagination-bullet-active{border-color:#e93323;background-color:#e93323}.goodsStyle{background-color:#fff;padding:22rpx 30rpx}.goodsStyle .pictrue{width:120rpx;height:120rpx}.goodsStyle .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodsStyle .text{width:545rpx;font-size:28rpx;color:#999}.goodsStyle .text .name{width:360rpx;color:#282828}.goodsStyle .text .money{text-align:right}.goodsStyle .text .money .num{margin-top:7rpx}.promoterHeader{width:100%;height:220rpx}.promoterHeader .headerCon{width:100%;height:100%;padding:0 88rpx 0 55rpx;font-size:28rpx;color:#fff;background-image:url('https://h5.yixiang.co/static/images/transparent.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%}.promoterHeader .headerCon .name{margin-bottom:2rpx}.promoterHeader .headerCon .num{font-size:50rpx}.promoterHeader .headerCon .iconfont{font-size:125rpx}.coupon-window{background-image:url('https://h5.yixiang.co/static/images/coupon-window.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:630rpx;height:649rpx;position:fixed;top:20%;z-index:99;left:50%;margin-left:-305rpx;-webkit-transform:translate3d(0, -200%, 0);transform:translate3d(0, -200%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.coupon-window.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.coupon-window .couponWinList{width:480rpx;margin:157rpx 0 0 60rpx;height:415rpx;overflow:auto}.coupon-window .couponWinList .item{width:100%;height:120rpx;background-color:#fff;position:relative;margin-bottom:17rpx}.coupon-window .couponWinList .item::after{content:'';position:absolute;width:18rpx;height:18rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#eb3729;left:25.5%;bottom:0;margin-bottom:-9rpx}.coupon-window .couponWinList .item::before{content:'';position:absolute;width:18rpx;height:18rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#eb3729;left:25.5%;top:0;margin-top:-9rpx}.coupon-window .couponWinList .item .money{width:130rpx;border-right:1px dashed #ddd;height:100%;text-align:center;line-height:120rpx;font-size:26rpx;font-weight:bold}.coupon-window .couponWinList .item .money .num{font-size:40rpx}.coupon-window .couponWinList .item .text{width:349rpx;font-size:22rpx;color:#999;padding:0 29rpx}.coupon-window .couponWinList .item .text .name{font-size:26rpx;color:#282828;font-weight:bold;margin-bottom:9rpx}.coupon-window .lid{background-image:url('https://h5.yixiang.co/static/images/coupon-window2.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:573rpx;height:224rpx;position:fixed;left:50%;top:20%;margin:424rpx 0 0 -296rpx}.coupon-window .lid .bnt{font-size:29rpx;width:440rpx;height:80rpx;-webkit-border-radius:40rpx;border-radius:40rpx;background-color:#f9f1d3;text-align:center;line-height:80rpx;font-weight:bold;margin:98rpx auto 0 auto}.coupon-window .lid .iconfont{color:#fff;font-size:60rpx;text-align:center;margin-top:87rpx}.index .header{height:98rpx;width:100%;padding:0 30rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.index .header .logo{width:127rpx;height:45rpx;margin-right:25rpx}.index .header .logo image{width:100%;height:100%;display:block}.index .header .search{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;height:64rpx;background-color:#f7f7f7;-webkit-border-radius:50rpx;border-radius:50rpx;padding:0 28rpx;font-size:28rpx;color:#bbb}.index .header .qr{width:51rpx;height:51rpx;font-size:34rpx;margin-left:16rpx;margin-right:16rpx}.index .header .qr image{width:51rpx;height:51rpx}.index .header .search .iconfont{font-size:34rpx;margin-right:16rpx}.index .banner{height:375rpx}.index .banner swiper{height:375rpx}.index .banner image{width:100%;height:375rpx}.index .banner .swiper-pagination{bottom:7rpx}.index .banner .swiper-pagination-bullet{width:20rpx;height:4rpx;-webkit-border-radius:3rpx;border-radius:3rpx;background-color:#fff;opacity:.6}.index .banner .swiper-pagination-bullet-active{opacity:1}.index .nav{padding-top:26rpx}.index .nav .item{width:25%;text-align:center;font-size:26rpx;margin-bottom:35rpx}.index .nav .item .pictrue{width:90rpx;height:90rpx;margin:0 auto 15rpx auto}.index .nav .item .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.index .news{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:77rpx;border-top:1px solid #f4f4f4;padding:0 30rpx;-webkit-box-shadow:0 10rpx 30rpx #f5f5f5;box-shadow:0 10rpx 30rpx #f5f5f5;-moz-box-shadow:0 10rpx 30rpx #f5f5f5;-o-box-shadow:0 10rpx 30rpx #f5f5f5;background:#fffbe8}.index .news .pictrue{width:26rpx;height:26rpx;border-right:1px solid #ddd;padding-right:23rpx;-webkit-box-sizing:content-box;box-sizing:content-box;-moz-box-sizing:content-box;margin-right:20rpx}.index .news .pictrue image{width:100%;height:100%;display:block}.index .news .new-banner{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;overflow:hidden;height:77rpx}.index .news .new-banner .swiper-wrapper{height:77rpx;width:100%}.index .news .new-banner .swiper-slide{height:77rpx;width:100%}.index .news .new-banner .swiper-slide .swiper-item{height:77rpx;width:100%}.index .news .new-banner .text{width:480rpx;height:77rpx}.index .news .new-banner .text .label{font-size:20rpx;color:#eb3729;width:68rpx;height:34rpx;-webkit-border-radius:20rpx;border-radius:20rpx;text-align:center;line-height:34rpx;border:2rpx solid #eb3729}.index .news .new-banner .text .newsTitle{width:397rpx;font-size:24rpx;color:#666}.index .news .new-banner .iconfont{font-size:28rpx;color:#888}.index .specialArea{padding:30rpx}.index .specialArea .assemble{width:260rpx;height:260rpx;position:relative}.index .specialArea .assemble image{width:100%;height:100%;-webkit-border-radius:5rpx;border-radius:5rpx}.index .specialArea .assemble .text{position:absolute;top:37rpx;left:22rpx}.index .specialArea .name{font-size:30rpx;color:#fff}.index .specialArea .infor{font-size:22rpx;color:rgba(255,255,255,0.8);margin-top:5rpx}.index .specialArea .list{height:260rpx;width:416rpx}.index .specialArea .item{width:100%;height:124rpx;position:relative}.index .specialArea .item image{width:100%;height:100%}.index .specialArea .item .text{position:absolute;top:23rpx;left:28rpx}.index .wrapper .title{border-top:1px solid #eee;padding-top:34rpx;margin:0 30rpx}.index .wrapper .title.no-border{border:0}.index .wrapper.hot+.wrapper{border-top:0}.index .wrapper .goodList{margin-bottom:34rpx}.index .wrapper .title .text{font-size:24rpx;color:#999;width:530rpx;text-align:left}.index .wrapper .title .text-center .name{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.index .wrapper .title .text .name{color:#282828;font-size:28rpx;font-weight:bold;margin-bottom:5rpx;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.index .wrapper .title .text .name .iconfont{margin-right:10rpx}.index .wrapper .title .text .name .new{position:absolute;top:2rpx;left:130rpx;font-size:16rpx;font-weight:bold}.index .wrapper .title .more{font-size:26rpx;color:#333}.index .wrapper .title .more .iconfont{margin-left:2rpx;font-size:26rpx}.index .wrapper .scroll-product{white-space:nowrap;margin-top:38rpx;padding:0 30rpx 37rpx 30rpx;overflow:hidden}.index .wrapper .scroll-product .swiper-slide{width:180rpx;display:inline-block;margin-right:19rpx;border-bottom:4rpx solid #47b479;-webkit-box-shadow:0 15rpx 15rpx -10rpx #eee;box-shadow:0 15rpx 15rpx -10rpx #eee;-moz-box-shadow:0 15rpx 15rpx -10rpx #eee;-o-box-shadow:0 15rpx 15rpx -10rpx #eee}.index .wrapper .scroll-product .swiper-slide:nth-of-type(3n){border-bottom:4rpx solid #ff6960}.index .wrapper .scroll-product .swiper-slide:nth-of-type(3n-1){border-bottom:4rpx solid #579afe}.index .wrapper .scroll-product .swiper-slide:nth-last-child(1){margin-right:0}.index .wrapper .scroll-product .swiper-slide .img-box{width:100%;height:180rpx}.index .wrapper .scroll-product .swiper-slide .img-box image{width:100%;height:100%;-webkit-border-radius:6rpx 6rpx 0 0;border-radius:6rpx 6rpx 0 0}.index .wrapper .scroll-product .swiper-slide .pro-info{font-size:24rpx;color:#282828;text-align:center;height:60rpx;line-height:60rpx;border:1px solid #f5f5f5;border-bottom:0;border-top:0;padding:0 10rpx}.index .wrapper .boutique{width:690rpx;height:290rpx;margin:28rpx auto 0 auto}.index .wrapper .boutique{width:690rpx;height:290rpx;margin:28rpx auto 0 auto}.index .wrapper .boutique image{width:100%;height:260rpx}.index .wrapper .boutique .swiper-pagination{bottom:-8rpx;width:100%}.index .wrapper .boutique .swiper-pagination-bullet{width:7rpx;height:7rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#fc4141;opacity:.3}.index .wrapper .boutique .swiper-pagination-bullet~.swiper-pagination-bullet{margin-left:10rpx}.index .wrapper .boutique .swiper-pagination-bullet-active{width:20rpx;height:7rpx;-webkit-border-radius:3.5rpx;border-radius:3.5rpx;opacity:1}.index .hotList .hot-bg{width:100%;height:215rpx;background-image:url('https://h5.yixiang.co/static/images/index-bg.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;padding:0 30rpx;font-size:24rpx;color:#fff;margin-top:15rpx}.index .hotList .hot-bg .title{height:87rpx}.index .hotList .hot-bg .title .text{width:575rpx}.index .hotList .hot-bg .title .text .label{font-size:30rpx;font-weight:bold;margin-right:20rpx}.index .hotList .hot-bg .title .more{font-size:26rpx;color:#fff}.index .hotList .hot-bg .title .more .iconfont{font-size:25rpx;vertical-align:2rpx;margin-left:10rpx}.index .hotList .list{width:690rpx;height:330rpx;-webkit-border-radius:20rpx;border-radius:20rpx;background-color:#fff;margin:-128rpx auto 0 auto;padding:0 22rpx;-webkit-box-shadow:0 0 20rpx -10rpx #aaa;box-shadow:0 0 20rpx -10rpx #aaa;-moz-box-shadow:0 0 20rpx -10rpx #aaa;-o-box-shadow:0 0 20rpx -10rpx #aaa}.index .hotList .list .item{width:200rpx;text-align:left}.index .hotList .list .item~.item{margin-left:23rpx}.index .hotList .list .item .pictrue{width:100%;height:200rpx;position:relative}.index .hotList .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:10rpx;border-radius:10rpx}.index .hotList .list .item .pictrue .numPic{width:50rpx;height:50rpx;-webkit-border-radius:50%;border-radius:50%;position:absolute;top:7rpx;left:7rpx}.index .hotList .list .item .name{font-size:26rpx;color:#282828;margin-top:12rpx}.index .hotList .list .item .money{font-size:20rpx;font-weight:bold;margin-top:2rpx}.index .hotList .list .item .money .num{font-size:28rpx}.index .adver{width:100%;height:180rpx;margin-top:37rpx}.index .adver image{width:100%;height:100%;display:block}.index .hot{position:relative;background:none}.index .hot .title{position:relative;z-index:9}.index .hot .title .text .name{color:#fff}.index .hot .title .more{color:#fff}.index .hot .title .more .iconfont{color:#fff}.index .hot .bg{width:100%;position:absolute;left:0;top:0;right:0}.index .wrapper.hot .newProducts .newProductsItem{border:0}.index .wrapper.hot .title .text{color:#fff;font-size:28rpx}.index .wrapper.hot .title .text .iconfont{margin-right:10rpx}.index .wrapper.hot .newProducts{white-space:nowrap;padding:0 30rpx;margin:35rpx;overflow:hidden;background-color:#fff;padding:30rpx;z-index:99;position:relative;margin-bottom:0;-webkit-border-radius:20rpx;border-radius:20rpx;-webkit-box-shadow:0 0 20rpx -10rpx #aaa;box-shadow:0 0 20rpx -10rpx #aaa}.index .wrapper .newProducts{white-space:nowrap;padding:0 30rpx;margin:35rpx 0 42rpx 0;overflow:hidden}.index .wrapper .newProducts .swiper-wrapper{height:350rpx}.index .wrapper.hot .newProducts .newProductsItem{width:240rpx;min-width:240rpx;margin-right:20rpx;-webkit-box-flex:0;-webkit-flex:0 240rpx;-ms-flex:0 240rpx;flex:0 240rpx}.index .wrapper .newProducts .newProductsScroll{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.index .wrapper.hot .newProducts .newProductsItem image{width:240rpx;height:240rpx}.index .wrapper .newProducts .newProductsItem{border:1rpx solid #eee;width:240rpx;min-width:240rpx;-webkit-border-radius:12rpx;border-radius:12rpx;overflow:hidden;margin-right:20rpx;-webkit-box-flex:0;-webkit-flex:0 240rpx;-ms-flex:0 240rpx;flex:0 240rpx}.index .wrapper .newProducts .img-box{width:100%;height:240rpx}.index .wrapper.hot .newProducts .img-box{width:240rpx}.index .wrapper .newProducts .img-box image{width:100%;height:100%;-webkit-border-radius:12rpx 12rpx 0 0;border-radius:12rpx 12rpx 0 0}.index .wrapper.hot .newProducts .img-box image{-webkit-border-radius:12rpx;border-radius:12rpx}.index .wrapper .newProducts .pro-info{font-size:28rpx;color:#333;text-align:center;padding:15rpx 10rpx 0 10rpx}.index .wrapper .newProducts .money{padding:0 10rpx 18rpx 10rpx;text-align:center;font-size:26rpx;font-weight:bold}.index .wrapper.hot .newProducts .pro-info{text-align:left}.index .wrapper.hot .newProducts .money{text-align:left}.productList .search{width:100%;height:86rpx;padding-left:23rpx;padding-right:23rpx;position:fixed;left:0;top:0;z-index:5;-webkit-box-sizing:border-box;box-sizing:border-box}.productList .search .input{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;height:60rpx;background-color:#fff;-webkit-border-radius:50rpx;border-radius:50rpx;padding:0 20rpx;margin-right:23rpx}.productList .search .input input{width:548rpx;height:100%;font-size:26rpx}.productList .search .input input::-webkit-input-placeholder{color:#999}.productList .search .input input::-moz-placeholder{color:#999}.productList .search .input input:-ms-input-placeholder{color:#999}.productList .search .input input::-ms-input-placeholder{color:#999}.productList .search .input input::placeholder{color:#999}.productList .search .input .iconfont{font-size:35rpx;color:#555}.productList .search .icon-pailie,.productList .search .icon-tupianpailie{margin:0 auto;color:#fff;width:40rpx;font-size:40rpx;height:86rpx;line-height:86rpx}.productList .nav{height:86rpx;color:#454545;position:fixed;left:0;width:100%;font-size:28rpx;background-color:#fff;top:86rpx;z-index:5}.productList .nav .item{width:25%;text-align:center}.productList .nav .item.font-color{font-weight:bold}.productList .nav .item image{width:15rpx;height:19rpx;margin-left:10rpx}.productList .list{padding:0 20rpx;margin-top:172rpx}.productList .list.on{background-color:#fff;border-top:1px solid #f6f6f6}.productList .list .item{width:345rpx;margin-top:20rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx}.productList .list .item.on{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-bottom:1px solid #f6f6f6;padding:30rpx 0;margin:0}.productList .list .item .pictrue{width:100%;height:345rpx}.productList .list .item .pictrue.on{width:180rpx;height:180rpx}.productList .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:10rpx 10rpx 0 0;border-radius:10rpx 10rpx 0 0}.productList .list .item .pictrue img.on{-webkit-border-radius:6rpx;border-radius:6rpx}.productList .list .item .text{padding:20rpx 17rpx 26rpx 17rpx;font-size:30rpx;color:#222;text-align:left}.productList .list .item .text.on{width:508rpx;padding:0 0 0 22rpx}.productList .list .item .text .money{font-size:26rpx;font-weight:bold;margin-top:8rpx}.productList .list .item .text .money.on{margin-top:40rpx}.productList .list .item .text .money .num{font-size:34rpx}.productList .list .item .text .vip{font-size:22rpx;color:#aaa;margin-top:7rpx}.productList .list .item .text .vip.on{margin-top:11rpx}.productList .list .item .text .vip .vip-money{font-size:24rpx;color:#282828;font-weight:bold;text-decoration:line-through}.productList .list .item .text .vip .vip-money image{width:46rpx;height:21rpx;margin-left:4rpx}.shoppingCart .labelNav{-webkit-box-sizing:border-box;box-sizing:border-box;height:76rpx;padding:0 30rpx;font-size:22rpx;color:#8c8c8c;position:fixed;left:0;width:100%;background-color:#f5f5f5;z-index:5;top:0}.shoppingCart .labelNav .item .iconfont{font-size:25rpx;margin-right:10rpx}.shoppingCart .nav{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:80rpx;background-color:#fff;padding:0 30rpx;font-size:28rpx;color:#282828;position:fixed;left:0;z-index:5;top:76rpx;border-bottom:1px solid #f5f5f5}.shoppingCart .nav .administrate{font-size:26rpx;color:#282828;width:110rpx;height:46rpx;-webkit-border-radius:6rpx;border-radius:6rpx;border:1px solid #868686}.shoppingCart .noCart{margin-top:171rpx;background-color:#fff;padding:78rpx 0 56rpx 0}.shoppingCart .noCart .pictrue{width:414rpx;height:336rpx;margin:0 auto}.shoppingCart .noCart .pictrue image{width:100%;height:100%}.shoppingCart .list{margin-top:171rpx}.shoppingCart .list .item{padding:25rpx 30rpx;background-color:#fff;margin-bottom:15rpx}.shoppingCart .list .item .picTxt{width:627rpx;position:relative}.shoppingCart .list .item .picTxt .pictrue{width:160rpx;height:160rpx}.shoppingCart .list .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.shoppingCart .list .item .picTxt .text{width:444rpx;font-size:28rpx;color:#282828;text-align:left}.shoppingCart .list .item .picTxt .text .infor{font-size:24rpx;color:#868686;margin-top:16rpx}.shoppingCart .list .item .picTxt .text .money{font-size:32rpx;color:#282828;margin-top:26rpx}.shoppingCart .list .item .picTxt .carnum{height:44rpx;position:absolute;bottom:7rpx;right:0}.shoppingCart .list .item .picTxt .carnum view{border:1px solid #a4a4a4;width:66rpx;text-align:center;height:100%;line-height:44rpx;font-size:28rpx;color:#a4a4a4}.shoppingCart .list .item .picTxt .carnum .reduce{border-right:0;-webkit-border-radius:3rpx 0 0 3rpx;border-radius:3rpx 0 0 3rpx;line-height:39rpx}.shoppingCart .list .item .picTxt .carnum .reduce.on{border-color:#e3e3e3;color:#dedede}.shoppingCart .list .item .picTxt .carnum .plus{border-left:0;-webkit-border-radius:0 3rpx 3rpx 0;border-radius:0 3rpx 3rpx 0;line-height:38rpx}.shoppingCart .list .item .picTxt .carnum .num{color:#282828}.shoppingCart .invalidGoods{background-color:#fff}.shoppingCart .invalidGoods .goodsNav{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:66rpx;padding:0 30rpx;font-size:28rpx;color:#282828}.shoppingCart .invalidGoods .goodsNav .iconfont{color:#424242;font-size:28rpx;margin-right:17rpx}.shoppingCart .invalidGoods .goodsNav .del{font-size:26rpx;color:#999}.shoppingCart .invalidGoods .goodsNav .del .icon-shanchu1{color:#999;font-size:33rpx;vertical-align:-2rpx;margin-right:8rpx}.shoppingCart .invalidGoods .goodsList .item{padding:20rpx 30rpx;border-top:1px solid #f5f5f5}.shoppingCart .invalidGoods .goodsList .item .invalid{font-size:22rpx;color:#fff;width:70rpx;height:36rpx;background-color:#aaa;-webkit-border-radius:3rpx;border-radius:3rpx}.shoppingCart .invalidGoods .goodsList .item .pictrue{width:140rpx;height:140rpx}.shoppingCart .invalidGoods .goodsList .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.shoppingCart .invalidGoods .goodsList .item .text{width:433rpx;font-size:28rpx;color:#999;height:140rpx;text-align:left}.shoppingCart .invalidGoods .goodsList .item .text .infor{font-size:24rpx}.shoppingCart .invalidGoods .goodsList .item .text .end{font-size:26rpx;color:#bbb}.shoppingCart .footer{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:96rpx;background-color:#fafafa;position:fixed;bottom:0;padding:0 30rpx;border-top:1px solid #eee}.shoppingCart .iphonex-footer{bottom:168rpx}.shoppingCart .footer .checkAll{font-size:28rpx;color:#282828;margin-left:10rpx}.shoppingCart .footer .money{font-size:30rpx}.shoppingCart .footer .placeOrder{color:#fff;font-size:30rpx;width:226rpx;height:70rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:70rpx;margin-left:22rpx}.shoppingCart .footer .button .bnt{font-size:28rpx;color:#999;-webkit-border-radius:50rpx;border-radius:50rpx;border:1px solid #999;width:160rpx;height:60rpx;text-align:center;line-height:60rpx}.shoppingCart .footer .button .bnt~.bnt{margin-left:17rpx}.user .header{padding:0 30rpx;height:190rpx;position:relative}.user .header:after{position:absolute;left:0;right:0;bottom:-98rpx;z-index:-1;content:'';height:100rpx;width:100%;-webkit-border-radius:0 0 50% 50%;border-radius:0 0 50% 50%;background-color:#eb3729}.user .header .picTxt .pictrue{width:120rpx;height:120rpx}.user .header .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:3rpx solid #f5f5f5}.user .header .picTxt .text{width:434rpx;color:#fff;margin-left:35rpx;text-align:left}.user .header .picTxt .text .name{font-size:32rpx;max-width:260rpx;width:unset}.user .header .picTxt .text .member{padding:0 10rpx;height:36rpx;background-color:rgba(0,0,0,0.2);font-size:20rpx;-webkit-border-radius:30rpx;border-radius:30rpx;margin-left:17rpx}.user .header .picTxt .text .member image{width:28rpx;height:28rpx;font-size:20rpx;margin-right:8rpx}.user .header .picTxt .text .id{color:rgba(255,255,255,0.6);font-size:26rpx;margin-top:15rpx}.user .header .picTxt .text .id .iconfont{font-size:30rpx;margin-left:12rpx}.user .header .icon-shezhi{font-size:36rpx;color:#fff;margin-top:-52rpx}.user .wrapper{padding:0 20rpx}.user .wrapper .nav{background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;height:140rpx}.user .wrapper .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:26rpx;color:#aaa;position:relative}.user .wrapper .nav .item text{display:block}.user .wrapper .nav .item~.item:after{position:absolute;content:'';left:0;width:1px;height:70rpx;background-color:#eee;top:50%;margin-top:-35rpx}.user .wrapper .nav .item .num{margin-top:10rpx;font-size:36rpx;color:#282828}.user .wrapper .myOrder{background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin-top:15rpx}.user .wrapper .myOrder .title,.user .wrapper .myService .title{height:88rpx;padding:0 30rpx;border-bottom:1px dashed #eee;font-size:30rpx;color:#282828}.user .wrapper .myOrder .title .allOrder{font-size:26rpx;color:#666}.user .wrapper .myOrder .title .allOrder .iconfont{font-size:25rpx;margin-left:7rpx}.user .wrapper .myOrder .orderState{height:160rpx}.user .wrapper .myOrder .orderState .item{font-size:26rpx;color:#454545;-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center}.user .wrapper .myOrder .orderState .item .pictrue{width:49rpx;height:42rpx;margin:0 auto 18rpx auto}.user .wrapper .myOrder .orderState .item .pictrue image{width:100%;height:100%}.user .wrapper .myService{background-color:#fff;margin-top:15rpx;-webkit-border-radius:10rpx;border-radius:10rpx}.user .wrapper .myService .serviceList{padding:8rpx 0 27rpx 0}.user .wrapper .myService .serviceList .item{width:100%;text-align:left;font-size:26rpx;color:#333;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:20rpx 30rpx;position:relative}.user .wrapper .myService .serviceList .item .iconfont{font-size:26rpx;color:#666}.user .wrapper .myService .serviceList .item::after{content:"";display:block;position:absolute;left:30rpx;right:0;bottom:0;border-bottom:1rpx solid #f5f5f5;z-index:999;height:1rpx}.user .wrapper .myService .serviceList .item .pictrue{width:36rpx;height:36rpx;margin-right:16rpx}.user .wrapper .myService .serviceList .item .cell{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.user .wrapper .myService .serviceList .item .pictrue image{width:100%;height:100%}.user .support{width:219rpx;height:74rpx;margin:54rpx auto;display:block}.product-con .wrapper{background-color:#fff}.product-con .wrapper .share{margin:0 30rpx;padding-top:25rpx}.product-con .wrapper .share .money{font-size:28rpx;font-weight:bold}.product-con .wrapper .share .money .num{font-size:48rpx}.product-con .wrapper .share .money .vip-money{color:#282828;margin-left:13rpx}.product-con .wrapper .share .money .image{width:46rpx;height:21rpx;margin-left:7rpx}.product-con .wrapper .share .money .vip-money{color:#282828;margin-left:13rpx}.product-con .wrapper .share .iconfont{color:#515151;font-size:40rpx;margin-bottom:10rpx}.product-con .wrapper .introduce{font-size:32rpx;font-weight:bold;margin:10rpx 30rpx 0 30rpx}.product-con .wrapper .label{margin:22rpx 30rpx 0 30rpx;font-size:24rpx;color:#82848f;padding-bottom:25rpx}.product-con .wrapper .coupon{padding:0 30rpx;border-top:1px solid #f5f5f5;height:80rpx;font-size:26rpx;color:#82848f}.product-con .wrapper .coupon .hide{width:540rpx;height:80rpx;line-height:80rpx}.product-con .wrapper .coupon .activity{height:40rpx;padding:0 20rpx;border:1px solid #f2857b;color:#e93323;font-size:24rpx;line-height:40rpx;position:relative;margin:19rpx 0 19rpx 15rpx}.product-con .wrapper .coupon .activity:before{content:' ';position:absolute;width:7rpx;height:10rpx;-webkit-border-radius:0 7rpx 7rpx 0;border-radius:0 7rpx 7rpx 0;border:1px solid #f2857b;background-color:#fff;bottom:50%;left:-2rpx;margin-bottom:-7rpx;border-left-color:#fff}.product-con .wrapper .coupon .activity:after{content:' ';position:absolute;width:7rpx;height:10rpx;-webkit-border-radius:7rpx 0 0 7rpx;border-radius:7rpx 0 0 7rpx;border:1px solid #f2857b;background-color:#fff;right:-2rpx;bottom:50%;margin-bottom:-5rpx;border-right-color:#fff}.product-con .wrapper .coupon .iconfont{color:#7a7a7a;font-size:28rpx}.product-con .attribute{background-color:#fff;padding:0 30rpx;font-size:26rpx;color:#82848f;margin-top:20rpx;height:80rpx}.product-con .attribute .atterTxt{font-size:28rpx;color:#282828}.product-con .attribute .iconfont{font-size:28rpx;color:#7a7a7a}.product-con .userEvaluation{margin-top:20rpx;background-color:#fff}.product-con .userEvaluation .title{height:86rpx;border-bottom:1px solid #eee;font-size:28rpx;color:#282828;margin-left:30rpx;padding-right:30rpx}.product-con .userEvaluation .title .praise{font-size:28rpx;color:#808080}.product-con .userEvaluation .title .praise .iconfont{color:#7a7a7a;font-size:28rpx;vertical-align:1rpx;margin-left:8rpx}.product-con .product-intro{margin-top:20rpx}.product-con .product-intro .title{font-size:30rpx;color:#282828;height:86rpx;width:100%;background-color:#fff;text-align:center;line-height:86rpx}.product-con .product-intro .conter{width:100%}.product-con .product-intro .conter *{width:100% !important;display:block !important}.product-con .footer{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 20rpx 0 30rpx;position:fixed;bottom:0;width:100%;height:100rpx;background-color:#fff;z-index:99;border-top:1px solid #f0f0f0}.product-con .footer .item{font-size:18rpx;color:#666;margin-top:7rpx}.product-con .footer .item .iconfont{text-align:center;font-size:40rpx;height:40rpx;line-height:40rpx}.product-con .footer .item .iconfont.icon-gouwuche1{position:relative}.product-con .footer .item .iconfont.icon-gouwuche1 .num{color:#fff;position:absolute;font-size:18rpx;-webkit-border-radius:200rpx;border-radius:200rpx;top:-10rpx;right:0;height:30rpx;line-height:30rpx;padding:0 8rpx;min-width:30rpx}.product-con .footer .bnt{width:444rpx;height:76rpx;color:#fff;font-size:28rpx}.product-con .footer .bnt>view{width:222rpx;text-align:center;line-height:76rpx}.product-con .footer .bnt .joinCart{-webkit-border-radius:50rpx 0 0 50rpx;border-radius:50rpx 0 0 50rpx;background-image:-webkit-gradient(linear, left top, right top, from(#fea10f), to(#fea10f));background-image:-webkit-linear-gradient(left, #fea10f 0%, #fea10f 100%);background-image:-o-linear-gradient(left, #fea10f 0%, #fea10f 100%);background-image:linear-gradient(to right, #fea10f 0%, #fea10f 100%);background-image:-moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%)}.product-con .footer .bnt .buy{-webkit-border-radius:0 50rpx 50rpx 0;border-radius:0 50rpx 50rpx 0;background-image:-webkit-gradient(linear, left top, right top, from(#eb3729), to(#eb3729));background-image:-webkit-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:-o-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:linear-gradient(to right, #eb3729 0%, #eb3729 100%);background-image:-moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%)}.order-submission .line{width:100%;height:3rpx}.order-submission .line image{width:100%;height:100%;display:block}.order-submission .address{padding:28rpx 30rpx;background-color:#fff}.order-submission .address .addressCon{width:570rpx;font-size:26rpx;color:#666}.order-submission .address .addressCon .name{font-size:30rpx;color:#282828;font-weight:bold;margin-bottom:10rpx}.order-submission .address .addressCon .name .phone{margin-left:50rpx}.order-submission .address .addressCon .default{margin-right:12rpx}.order-submission .address .addressCon .setaddress{color:#333;font-size:28rpx}.order-submission .address .iconfont{font-size:35rpx;color:#707070}.order-submission .wrapper{background-color:#fff;margin-top:13rpx}.order-submission .wrapper .item{padding:27rpx 30rpx;font-size:30rpx;color:#282828;border-bottom:1px solid #f0f0f0}.order-submission .wrapper .item .discount{font-size:30rpx;color:#999;width:500rpx;text-align:right}.order-submission .wrapper .item .discount .integral{margin-right:40rpx}.order-submission .wrapper .item .discount .checkbox-wrapper .icon{right:0;left:unset}.order-submission .wrapper .item .discount .iconfont{color:#515151;font-size:30rpx;margin-left:15rpx}.order-submission .wrapper .item .discount .num{font-size:32rpx;margin-right:20rpx}.order-submission .wrapper .item textarea{-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#f9f9f9;width:100%;height:140rpx;-webkit-border-radius:3rpx;border-radius:3rpx;margin-top:30rpx;padding:25rpx 28rpx}.order-submission .wrapper .item textarea::-webkit-input-placeholder{color:#ccc}.order-submission .wrapper .item textarea::-moz-placeholder{color:#ccc}.order-submission .wrapper .item textarea:-ms-input-placeholder{color:#ccc}.order-submission .wrapper .item textarea::-ms-input-placeholder{color:#ccc}.order-submission .wrapper .item textarea::placeholder{color:#ccc}.order-submission .wrapper .item .list{margin-top:35rpx}.order-submission .wrapper .item .list .payItem{border:1px solid #eee;-webkit-border-radius:6rpx;border-radius:6rpx;height:86rpx;width:100%;margin-top:20rpx;font-size:28rpx;color:#282828}.order-submission .wrapper .item .list .payItem.on{border-color:#fc5445;color:#e93323}.order-submission .wrapper .item .list .payItem .name{width:50%;text-align:center;border-right:1px solid #eee}.order-submission .wrapper .item .list .payItem .name .iconfont{width:44rpx;height:44rpx;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:44rpx;background-color:#fe960f;color:#fff;font-size:30rpx;margin-right:15rpx}.order-submission .wrapper .item .list .payItem .name .iconfont.icon-weixin2{background-color:#41b035}.order-submission .wrapper .item .list .payItem .name .iconfont.icon-yinhangqia{background-color:#eb3729}.order-submission .wrapper .item .list .payItem .tip{width:49%;text-align:center;font-size:26rpx;color:#aaa}.order-submission .moneyList{margin-top:12rpx;background-color:#fff;padding:30rpx}.order-submission .moneyList .item{font-size:28rpx;color:#282828}.order-submission .moneyList .item~.item{margin-top:20rpx}.order-submission .moneyList .item .money{color:#868686}.order-submission .footer{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100rpx;background-color:#fff;padding:0 30rpx;font-size:28rpx;color:#333;position:fixed;bottom:0;left:0}.order-submission .footer .settlement{font-size:30rpx;color:#fff;width:240rpx;height:70rpx;background-color:#e93323;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:70rpx}.address-management .line{width:100%;height:3rpx}.address-management .line image{width:100%;height:100%;display:block}.address-management .item{background-color:#fff;padding:0 30rpx;margin-bottom:12rpx}.address-management .item .address{padding:30rpx 0;border-bottom:1px solid #eee;font-size:28rpx;color:#282828}.address-management .item .address .consignee{font-size:28rpx;font-weight:bold;margin-bottom:8rpx}.address-management .item .address .consignee .phone{margin-left:25rpx}.address-management .item .operation{height:83rpx;font-size:28rpx;color:#282828}.address-management .item .operation .default{margin-left:10rpx}.address-management .item .operation .iconfont{color:#2c2c2c;font-size:30rpx;vertical-align:-2rpx;margin-right:10rpx}.address-management .item .operation .iconfont.icon-shanchu{margin-left:40rpx;font-size:33rpx}.address-management .footer{-webkit-box-sizing:border-box;box-sizing:border-box;position:fixed;width:100%;background-color:#fff;bottom:0;height:106rpx;padding:0 30rpx}.address-management .footer .addressBnt{width:330rpx;height:76rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:76rpx;font-size:30rpx;color:#fff}.address-management .footer .addressBnt.on{width:690rpx;margin:0 auto}.address-management .footer .addressBnt .iconfont{font-size:35rpx;margin-right:8rpx;vertical-align:-1rpx}.address-management .footer .addressBnt.wxbnt{background-color:#eb3729}.addAddress .list{background-color:#fff}.addAddress .list .item{padding:0 30rpx;min-height:90rpx;border-top:1rpx solid #eee;font-size:30rpx}.addAddress .list .item .name{width:195rpx;color:#333}.addAddress .list .item input{width:475rpx;font-size:30rpx}.addAddress .list .item input::-webkit-input-placeholder{color:#ccc}.addAddress .list .item input::-moz-placeholder{color:#ccc}.addAddress .list .item input:-ms-input-placeholder{color:#ccc}.addAddress .list .item input::-ms-input-placeholder{color:#ccc}.addAddress .list .item input::placeholder{color:#ccc}.addAddress .list .item .picker{width:475rpx}.addAddress .list .item .address{width:410rpx}.addAddress .list .item .picker .iconfont{font-size:43rpx}.addAddress .default{padding:0 30rpx;height:90rpx;background-color:#fff;margin-top:23rpx}.addAddress .default .def{margin-left:10rpx;height:83rpx;font-size:28rpx;color:#282828}.addAddress .keepBnt{width:690rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;margin:50rpx auto 30rpx auto;font-size:32rpx;color:#fff}.addAddress .wechatAddress{width:690rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;margin:0 auto;font-size:32rpx;color:#eb3729;border:1px solid #eb3729}.my-order .header{height:260rpx;padding:0 30rpx}.my-order .header .picTxt{height:190rpx}.my-order .header .picTxt .text{color:rgba(255,255,255,0.8);font-size:26rpx;font-family:'GuildfordProBook 5'}.my-order .header .picTxt .text .name{font-size:34rpx;font-weight:bold;color:#fff;margin-bottom:20rpx}.my-order .header .picTxt .pictrue{width:122rpx;height:109rpx}.my-order .header .picTxt .pictrue image{width:100%;height:100%}.my-order .nav{background-color:#fff;width:690rpx;height:140rpx;-webkit-border-radius:6rpx;border-radius:6rpx;margin:-73rpx auto 0 auto}.my-order .nav .item{text-align:center;font-size:26rpx;color:#282828;padding:29rpx 0 20rpx 0}.my-order .nav .item.on{font-weight:bold;border-bottom:5rpx solid #eb3729}.my-order .nav .item .num{margin-top:10rpx}.my-order .list{width:690rpx;margin:14rpx auto 0 auto}.my-order .list .item{background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;margin-bottom:14rpx}.my-order .list .item .title{height:84rpx;padding:0 30rpx;border-bottom:1rpx solid #eee;font-size:28rpx;color:#282828}.my-order .list .item .title .sign{font-size:24rpx;padding:0 7rpx;height:36rpx;margin-right:15rpx}.my-order .list .item .item-info{padding:0 30rpx;margin-top:22rpx}.my-order .list .item .item-info .pictrue{width:120rpx;height:120rpx}.my-order .list .item .item-info .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.my-order .list .item .item-info .text{width:486rpx;font-size:28rpx;color:#999;margin-top:6rpx}.my-order .list .item .item-info .text .name{width:306rpx;color:#282828}.my-order .list .item .item-info .text .money{text-align:right}.my-order .list .item .totalPrice{font-size:26rpx;color:#282828;text-align:right;margin:27rpx 0 0 30rpx;padding:0 30rpx 30rpx 0;border-bottom:1rpx solid #eee}.my-order .list .item .totalPrice .money{font-size:28rpx;font-weight:bold}.my-order .list .item .bottom{height:107rpx;padding:0 30rpx}.my-order .list .item .bottom .bnt{width:176rpx;height:60rpx;text-align:center;line-height:60rpx;color:#fff;-webkit-border-radius:50rpx;border-radius:50rpx;font-size:27rpx}.my-order .list .item .bottom .bnt.cancelBnt{border:1px solid #ddd;color:#aaa}.my-order .list .item .bottom .bnt.default{color:#444;border:1px solid #444}.my-order .list .item .bottom .bnt~.bnt{margin-left:17rpx}.order-details .header{padding:0 30rpx;height:150rpx}.order-details .header.on{background-color:#666 !important}.order-details .header .pictrue{width:110rpx;height:110rpx}.order-details .header .pictrue image{width:100%;height:100%}.order-details .header .data{color:rgba(255,255,255,0.8);font-size:24rpx;margin-left:27rpx}.order-details .header.on .data{margin-left:0}.order-details .header .data .state{font-size:30rpx;font-weight:bold;color:#fff;margin-bottom:7rpx}.order-details .header .data .time{margin-left:20rpx}.order-details .nav{background-color:#fff;font-size:26rpx;color:#282828;padding:25rpx 0}.order-details .nav .navCon{padding:0 40rpx}.order-details .nav .navCon .on{font-weight:bold;color:#eb3729}.order-details .nav .progress{padding:0 65rpx;margin-top:10rpx}.order-details .nav .progress .line{width:100rpx;height:2rpx;background-color:#939390}.order-details .nav .progress .iconfont{font-size:25rpx;color:#939390;margin-top:-2rpx;width:30rpx;height:30rpx;line-height:33rpx;text-align:center}.order-details .address{font-size:26rpx;color:#868686;background-color:#fff;padding:25rpx 30rpx 30rpx 30rpx}.order-details .address .name{font-size:30rpx;color:#282828;margin-bottom:10rpx}.order-details .address .name .phone{margin-left:40rpx}.order-details .line{width:100%;height:3rpx}.order-details .line image{width:100%;height:100%;display:block}.order-details .wrapper{background-color:#fff;margin-top:12rpx;padding:30rpx}.order-details .wrapper .item{font-size:28rpx;color:#282828}.order-details .wrapper .item~.item{margin-top:20rpx}.order-details .wrapper .item .conter{color:#868686;width:500rpx;text-align:right}.order-details .wrapper .item .conter .copy{font-size:20rpx;color:#333;-webkit-border-radius:3rpx;border-radius:3rpx;border:1px solid #666;padding:3rpx 15rpx;margin-left:24rpx}.order-details .wrapper .actualPay{border-top:1rpx solid #eee;margin-top:30rpx;padding-top:30rpx}.order-details .wrapper .actualPay .money{font-weight:bold;font-size:30rpx}.order-details .footer{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100rpx;position:fixed;bottom:0;left:0;background-color:#fff;padding:0 30rpx;border-top:1px solid #eee}.order-details .footer .bnt{width:176rpx;height:60rpx;text-align:center;line-height:60rpx;-webkit-border-radius:50rpx;border-radius:50rpx;color:#fff;font-size:27rpx}.order-details .footer .bnt.cancel{color:#aaa;border:1px solid #ddd}.order-details .footer .bnt.default{color:#444;border:1px solid #444}.order-details .footer .bnt~.bnt{margin-left:18rpx}.logistics .header{padding:23rpx 30rpx;background-color:#fff;height:166rpx}.logistics .header .pictrue{width:120rpx;height:120rpx}.logistics .header .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.logistics .header .text{width:540rpx;font-size:28rpx;color:#999;margin-top:6rpx}.logistics .header .text .name{width:365rpx;color:#282828}.logistics .header .text .money{text-align:right}.logistics .logisticsCon{background-color:#fff;margin:12rpx 0}.logistics .logisticsCon .company{height:120rpx;margin:0 0 45rpx 30rpx;padding-right:30rpx;border-bottom:1px solid #f5f5f5}.logistics .logisticsCon .company .picTxt{width:520rpx}.logistics .logisticsCon .company .picTxt .iconfont{width:50rpx;height:50rpx;background-color:#666;text-align:center;line-height:50rpx;color:#fff;font-size:35rpx}.logistics .logisticsCon .company .picTxt .text{width:450rpx;font-size:26rpx;color:#282828}.logistics .logisticsCon .company .picTxt .text .name{color:#999}.logistics .logisticsCon .company .picTxt .text .express{margin-top:5rpx}.logistics .logisticsCon .company .copy{font-size:20rpx;width:106rpx;height:40rpx;-webkit-border-radius:3rpx;border-radius:3rpx;border:1px solid #999}.logistics .logisticsCon .item{padding:0 40rpx;position:relative}.logistics .logisticsCon .item .circular{width:20rpx;height:20rpx;-webkit-border-radius:50%;border-radius:50%;position:absolute;top:-1rpx;left:31.5rpx;background-color:#ddd}.logistics .logisticsCon .item .circular.on{background-color:#eb3729}.logistics .logisticsCon .item .text{font-size:26rpx;color:#666;width:615rpx;border-left:1px solid #e6e6e6;padding:0 0 60rpx 38rpx}.logistics .logisticsCon .item .text.on{border-left-color:#f8c1bd}.logistics .logisticsCon .item .text .data{font-size:24rpx;color:#999;margin-top:10rpx}.logistics .logisticsCon .item .text .data .time{margin-left:15rpx}.payment-status{background-color:#fff;margin:195rpx auto 0 auto;-webkit-border-radius:10rpx;border-radius:10rpx;padding:1rpx 0 28rpx 0;width:690rpx;left:50%;margin-left:-345rpx}.payment-status .iconfont{font-size:70rpx;width:140rpx;height:140rpx;-webkit-border-radius:50%;border-radius:50%;color:#fff;text-align:center;line-height:130rpx;text-shadow:0 4px 0 #eb3729;border:6rpx solid #f5f5f5;margin:-76rpx auto 0 auto;background-color:#999}.payment-status .iconfont.fail{text-shadow:0 4px 0 #7a7a7a}.payment-status .status{font-size:32rpx;font-weight:bold;text-align:center;margin:25rpx 0 37rpx 0}.payment-status .wrapper{border:1px solid #eee;margin:0 30rpx 47rpx 30rpx;padding:35rpx 0;border-left:0;border-right:0}.payment-status .wrapper .item{font-size:28rpx;color:#282828}.payment-status .wrapper .item~.item{margin-top:20rpx}.payment-status .wrapper .item .itemCom{color:#666}.payment-status .returnBnt{width:630rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;color:#fff;font-size:30rpx;text-align:center;line-height:86rpx;margin:0 auto 20rpx auto}.personal-data .wrapper{margin:10rpx 0;background-color:#fff;padding:36rpx 30rpx 13rpx 30rpx}.personal-data .wrapper .title{margin-bottom:30rpx;font-size:32rpx;color:#282828}.personal-data .wrapper .wrapList .item{width:100%;background-color:#f8f8f8;-webkit-border-radius:20rpx;border-radius:20rpx;position:relative}.personal-data .wrapper .wrapList .item.on{-webkit-background-size:100% 100%;background-size:100% 100%;background-color:#fff}.personal-data .wrapper .wrapList .item .picTxt{width:445rpx}.personal-data .wrapper .wrapList .item .picTxt .pictrue{width:96rpx;height:96rpx;position:relative}.personal-data .wrapper .wrapList .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.personal-data .wrapper .wrapList .item .picTxt .pictrue img{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.personal-data .wrapper .wrapList .item .picTxt .pictrue .alter{width:30rpx;height:30rpx;-webkit-border-radius:50%;border-radius:50%;position:absolute;bottom:0;right:0}.personal-data .wrapper .wrapList .item .picTxt .text{width:325rpx}.personal-data .wrapper .wrapList .item .picTxt .text .name{width:100%;font-size:30rpx;color:#282828}.personal-data .wrapper .wrapList .item .picTxt .text .phone{font-size:24rpx;color:#999;margin-top:10rpx}.personal-data .wrapper .wrapList .item .bnt{font-size:24rpx;background-color:#fff;-webkit-border-radius:27rpx;border-radius:27rpx;width:140rpx;height:54rpx;border:2rpx solid #e93323}.personal-data .wrapper .wrapList .item .currentBnt{position:absolute;right:0;top:0;font-size:26rpx;background-color:rgba(233,51,35,0.1);width:140rpx;height:48rpx;-webkit-border-radius:0 20rpx 0 20rpx;border-radius:0 20rpx 0 20rpx}.personal-data .list{background-color:#fff}.personal-data .list .item{padding:30rpx 30rpx 30rpx 0;border-bottom:1px solid #f2f2f2;margin-left:30rpx;font-size:32rpx;color:#282828}.personal-data .list .item .pictrue{width:88rpx;height:88rpx}.personal-data .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.personal-data .list .item .input{width:415rpx;text-align:right;color:#868686}.personal-data .list .item .input input{color:#868686;text-align:right;width:100%}.personal-data .list .item .input .id{width:365rpx}.personal-data .list .item .input .iconfont{font-size:35rpx}.personal-data .list .item .input .iconfont.icon-xiangyou{font-size:30rpx;margin-left:27rpx}.personal-data .modifyBnt{font-size:32rpx;color:#fff;width:690rpx;height:90rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:90rpx;margin:76rpx auto 0 auto}.personal-data .logOut{font-size:32rpx;text-align:center;width:690rpx;height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;margin:30rpx auto 70rpx auto}.poster-poster .tip{height:80rpx;font-size:26rpx;color:#e8c787;text-align:center;line-height:80rpx}.poster-poster .tip .iconfont{font-size:36rpx;vertical-align:-4rpx;margin-right:18rpx}.poster-poster .poster{width:690rpx;height:100%;margin:0 auto}.poster-poster .poster image{width:100%;height:100%;display:block}.distribution-posters .slider-banner{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;padding:40rpx;position:relative}.distribution-posters .slider-banner .swiper-slide{width:600rpx !important;height:100%}.distribution-posters .slide-image{width:100%;height:100%;-webkit-border-radius:15rpx;border-radius:15rpx}.distribution-posters .keep{font-size:30rpx;color:#fff;width:600rpx;height:80rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:80rpx;margin:38rpx auto}.member-center .header{background-color:#232323;width:100%;padding:50rpx 0}.member-center .header .slider-banner{height:328rpx}.member-center .header .slider-banner .swiper-slide{width:636rpx !important;height:328rpx;-webkit-border-radius:16rpx;border-radius:16rpx;color:#fff;position:relative;background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%}.member-center .header .slider-banner .swiper-slide.diamonds{background-image:url("https://h5.yixiang.co/static/images/diamonds.jpg")}.member-center .header .slider-banner .swiper-slide.gold{background-image:url("https://h5.yixiang.co/static/images/gold.jpg")}.member-center .header .slider-banner .swiper-slide.silver{background-image:url("https://h5.yixiang.co/static/images/silver.jpg")}.member-center .header .slider-banner .swiper-slide.brass{background-image:url("https://h5.yixiang.co/static/images/brass.jpg")}.member-center .header .slider-banner .swiper-slide.bronze{background-image:url("https://h5.yixiang.co/static/images/bronze.jpg")}.member-center .header .slider-banner .swiper-slide.ordinary{background-image:url("https://h5.yixiang.co/static/images/ordinary.jpg")}.member-center .header .slider-banner .swiper-slide image{width:89rpx;height:108rpx;display:block;position:absolute;right:60rpx}.member-center .header .slider-banner .swiper-slide .name{font-size:46rpx;font-weight:bold;padding:33rpx 0 0 35rpx}.member-center .header .slider-banner .swiper-slide .discount{font-size:28rpx;font-weight:bold;margin:2rpx 0 0 35rpx}.member-center .header .slider-banner .swiper-slide .discount .iconfont{margin-left:10rpx;font-size:30rpx}.member-center .header .slider-banner .swiper-slide .nav{margin-top:48rpx}.member-center .header .slider-banner .swiper-slide .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;color:rgba(255,255,255,0.6);position:relative}.member-center .header .slider-banner .swiper-slide .nav .item .num{font-size:40rpx;color:#fff;font-family:'GuildfordProBook 5'}.member-center .header .slider-banner .swiper-slide .nav .item~.item::before{position:absolute;width:2rpx;height:32rpx;background-color:rgba(255,255,255,0.6);content:'';left:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.member-center .header .slider-banner .swiper-slide .lock{font-size:26rpx;margin:73rpx 0 0 35rpx}.member-center .header .slider-banner .swiper-slide .lock .iconfont{font-size:33rpx;margin-right:15rpx;vertical-align:-4rpx}.member-center .wrapper{background-color:#fff;padding-bottom:16rpx;margin-bottom:20rpx}.member-center .wrapper .title{height:98rpx;padding:0 30rpx;font-size:30rpx;font-weight:bold;color:#282828}.member-center .wrapper .title .iconfont{color:#eb3729;font-weight:normal;font-size:40rpx;margin-right:12rpx;vertical-align:-2rpx}.member-center .wrapper .title .num{font-size:28rpx;color:#999}.member-center .wrapper .title .num .current{color:#eb3729}.member-center .wrapper .list .item{width:690rpx;height:184rpx;background-color:#f9f9f9;margin:0 auto 20rpx auto;padding:27rpx 0 22rpx 0;-webkit-border-radius:12rpx;border-radius:12rpx}.member-center .wrapper .list .item .top{padding-right:27rpx;font-size:26rpx;color:#999}.member-center .wrapper .list .item .top .name{border-left:6rpx solid #eb3729;padding-left:20rpx;font-size:28rpx;color:#282828;font-weight:bold}.member-center .wrapper .list .item .top .name .iconfont{color:#999;font-size:30rpx;vertical-align:-2rpx;margin-left:10rpx}.member-center .wrapper .list .item .cu-progress{overflow:hidden;height:12rpx;background-color:#eee;width:636rpx;-webkit-border-radius:20rpx;border-radius:20rpx;margin:35rpx auto 0 auto}.member-center .wrapper .list .item .cu-progress .bg-red{width:0;height:100%;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;background-color:#eb3729;-webkit-border-radius:20rpx;border-radius:20rpx}.member-center .wrapper .list .item .experience{margin-top:17rpx;padding:0 27rpx;font-size:24rpx;color:#999}.member-center .wrapper .list .item .experience .num{color:#eb3729}.member-center .growthValue{background-color:#fff;-webkit-border-radius:16rpx;border-radius:16rpx;position:fixed;top:266rpx;left:50%;width:560rpx;height:740rpx;margin-left:-280rpx;z-index:99;-webkit-transform:translate3d(0, -200%, 0);transform:translate3d(0, -200%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.member-center .growthValue.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.member-center .growthValue .pictrue{width:100%;height:257rpx;position:relative}.member-center .growthValue .pictrue image{width:100%;height:100%;-webkit-border-radius:16rpx 16rpx 0 0;border-radius:16rpx 16rpx 0 0}.member-center .growthValue .conter{padding:0 35rpx;font-size:30rpx;color:#333;margin-top:58rpx;line-height:1.5;height:350rpx;overflow:auto}.member-center .growthValue .pictrue .iconfont{position:absolute;font-size:65rpx;color:#fff;top:775rpx;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.integral-details .header{background-image:url('https://h5.yixiang.co/static/images/integralbg.jpg');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:360rpx;font-size:72rpx;color:#fff;padding:31rpx 0 45rpx 0;text-align:center;font-family:'GuildfordProBook 5'}.integral-details .header .currentScore{font-size:26rpx;color:rgba(255,255,255,0.8);text-align:center;margin-bottom:5rpx}.integral-details .header .line{width:60rpx;height:3rpx;background-color:#fff;margin:20rpx auto 0 auto}.integral-details .header .nav{font-size:22rpx;color:rgba(255,255,255,0.8);-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;margin-top:35rpx}.integral-details .header .nav .item{width:33.33%;text-align:center}.integral-details .header .nav .item .num{color:#fff;font-size:40rpx}.integral-details .wrapper .nav{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;width:690rpx;-webkit-border-radius:20rpx 20rpx 0 0;border-radius:20rpx 20rpx 0 0;margin:-96rpx auto 0 auto;background-color:#f7f7f7;height:96rpx;font-size:30rpx;color:#bbb}.integral-details .wrapper .nav .item{text-align:center;width:100%}.integral-details .wrapper .nav .item.on{background-color:#fff;color:#eb3729;font-weight:bold;-webkit-border-radius:20rpx 20rpx 0 0;border-radius:20rpx 20rpx 0 0}.integral-details .wrapper .nav .item .iconfont{font-size:38rpx;margin-right:10rpx}.integral-details .wrapper .list{background-color:#fff;padding:24rpx 30rpx}.integral-details .wrapper .list .tip{font-size:25rpx;width:690rpx;height:60rpx;-webkit-border-radius:50rpx;border-radius:50rpx;background-color:#fff5e2;border:1px solid #ffeac1;color:#c8a86b;padding:0 20rpx;margin-bottom:24rpx}.integral-details .wrapper .list .tip .iconfont{font-size:35rpx;margin-right:15rpx}.integral-details .wrapper .list .item{height:124rpx;border-bottom:1px solid #eee;font-size:24rpx;color:#999}.integral-details .wrapper .list .item .state{font-size:28rpx;color:#282828;margin-bottom:8rpx}.integral-details .wrapper .list .item .num{font-size:36rpx;font-family:'GuildfordProBook 5';color:#16ac57}.integral-details .wrapper .list2{background-color:#fff;padding:24rpx 0}.integral-details .wrapper .list2 .item{background-image:-webkit-gradient(linear, left top, right top, from(#fff7e7), to(#fffdf9));background-image:-webkit-linear-gradient(left, #fff7e7 0%, #fffdf9 100%);background-image:-o-linear-gradient(left, #fff7e7 0%, #fffdf9 100%);background-image:linear-gradient(to right, #fff7e7 0%, #fffdf9 100%);background-image:-moz-linear-gradient(to right, #fff7e7 0%, #fffdf9 100%);width:690rpx;height:180rpx;position:relative;-webkit-border-radius:10rpx;border-radius:10rpx;margin:0 auto 20rpx auto;padding:0 25rpx 0 180rpx}.integral-details .wrapper .list2 .item .pictrue{width:90rpx;height:150rpx;position:absolute;bottom:0;left:45rpx}.integral-details .wrapper .list2 .item .pictrue image{width:100%;height:100%}.integral-details .wrapper .list2 .item .name{width:285rpx;font-size:30rpx;font-weight:bold;color:#c8a86b}.integral-details .wrapper .list2 .item .earn{font-size:26rpx;color:#c8a86b;border:2rpx solid #c8a86b;text-align:center;line-height:52rpx;height:52rpx;width:160rpx;-webkit-border-radius:50rpx;border-radius:50rpx}.quality-recommend .title{height:120rpx;font-size:32rpx;color:#282828;background-color:#f5f5f5}.quality-recommend .title .line{width:230rpx;height:2rpx;background-color:#e9e9e9}.quality-recommend .title .name{margin:0 20rpx}.quality-recommend .title .name .iconfont{margin-right:13rpx;font-size:38rpx;vertical-align:-4rpx}.bargain-list .icon-xiangzuo{font-size:40rpx;color:#fff;position:fixed;top:51rpx;left:30rpx;z-index:99}.bargain-list .header{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:750rpx;height:713rpx}.bargain-list .list{-webkit-border-radius:30rpx;border-radius:30rpx;margin:30rpx 30rpx 66rpx 30rpx}.bargain-list .list .item{border-bottom:1px solid #eee;position:relative;height:223rpx;background-color:#fff;padding:0 24rpx;margin:0 auto 20rpx auto}.bargain-list .list .item .pictrue{width:160rpx;height:160rpx}.bargain-list .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.bargain-list .list .item .text{width:450rpx;font-size:30rpx;color:#282828;height:160rpx}.bargain-list .list .item .text .num{font-size:26rpx;color:#999}.bargain-list .list .item .text .num .iconfont{font-size:35rpx;margin-right:7rpx}.bargain-list .list .item .text .money{font-size:24rpx;font-weight:bold}.bargain-list .list .item .text .money .price{font-size:32rpx}.bargain-list .list .item .cutBnt{position:absolute;width:180rpx;height:50rpx;-webkit-border-radius:50rpx;border-radius:50rpx;font-size:24rpx;color:#fff;text-align:center;line-height:46rpx;right:24rpx;bottom:28rpx;-webkit-box-shadow:0 7rpx 0 #f8c1bd;box-shadow:0 7rpx 0 #f8c1bd;-moz-box-shadow:0 7rpx 0 #f8c1bd;-o-box-shadow:0 7rpx 0 #f8c1bd}.bargain-list .list .item .cutBnt .iconfont{margin-right:8rpx;font-size:30rpx}.bargain-list .list .load{font-size:24rpx;height:85rpx;text-align:center;line-height:85rpx}.bargain .icon-xiangzuo{font-size:40rpx;color:#fff;position:fixed;top:51rpx;left:30rpx;z-index:99}.bargain .header{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:698rpx;height:372rpx;margin:0 auto;padding-top:.1rpx;margin-top:40rpx}.bargain .header.on{background-image:url('https://h5.yixiang.co/static/images/cut2.png')}.bargain .header .pictxt{margin:260rpx auto 0 auto;font-size:26rpx;color:#fff}.bargain .header .pictxt .pictrue{width:56rpx;height:56rpx;margin-right:30rpx}.bargain .header .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:2rpx solid #fff}.bargain .header .pictxt .text text{margin-left:20rpx}.bargain .header .time{background-image:url('https://h5.yixiang.co/static/images/time.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:440rpx;height:166rpx;margin:80rpx auto 0 auto;font-size:22rpx;text-align:center;padding-top:9rpx;color:#fc4141}.bargain .header .people{text-align:center;color:#fff;font-size:20rpx;margin-top:20rpx}.bargain .header .time .styleAll{color:#333}.bargain .wrapper,.bargain .bargainGang,.bargain .goodsDetails{width:660rpx;border:6rpx solid #eb3729;background-color:#fff;-webkit-border-radius:20rpx;border-radius:20rpx;margin:-162rpx auto 0 auto;padding:0 24rpx 47rpx 24rpx;position:relative}.bargain .wrapper .pictxt{margin:26rpx 0 37rpx 0}.bargain .wrapper .pictxt .pictrue{width:180rpx;height:180rpx;position:relative}.bargain .wrapper .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.bargain .wrapper .pictxt .text{width:395rpx;font-size:28rpx;color:#282828;height:180rpx}.bargain .wrapper .pictxt .text .money{font-weight:bold;font-size:24rpx}.bargain .wrapper .pictxt .text .money .num{font-size:36rpx}.bargain .wrapper .pictxt .text .successNum{font-size:22rpx;color:#999;margin-right:15rpx}.bargain .wrapper .cu-progress{overflow:hidden;height:12rpx;background-color:#eee;width:100%;-webkit-border-radius:20rpx;border-radius:20rpx}.bargain .wrapper .cu-progress .bg-red{width:0;height:100%;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;-webkit-border-radius:20rpx;border-radius:20rpx;background-image:-webkit-gradient(linear, left top, right top, from(#ffa363), to(#e93323));background-image:-webkit-linear-gradient(left, #ffa363 0%, #e93323 100%);background-image:-o-linear-gradient(left, #ffa363 0%, #e93323 100%);background-image:linear-gradient(to right, #ffa363 0%, #e93323 100%);background-image:-moz-linear-gradient(to right, #ffa363 0%, #e93323 100%)}.bargain .wrapper .balance{font-size:22rpx;color:#999;margin-top:15rpx}.bargain .wrapper .bargainSuccess{font-size:26rpx;color:#282828;text-align:center}.bargain .wrapper .bargainSuccess .iconfont{font-size:45rpx;color:#54c762;padding-right:18rpx;vertical-align:-5rpx}.bargain .wrapper .bargainBnt{font-size:30rpx;font-weight:bold;color:#fff;width:100%;height:80rpx;-webkit-border-radius:40rpx;border-radius:40rpx;background-image:-webkit-gradient(linear, left top, right top, from(#f67a38), to(#f11b09));background-image:-webkit-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:-o-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:linear-gradient(to right, #f67a38 0%, #f11b09 100%);text-align:center;line-height:80rpx;margin-top:32rpx}.bargain .wrapper .bargainBnt.on{border:2rpx solid #eb3729;color:#eb3729;background-image:-webkit-gradient(linear, left top, right top, from(#fff), to(#fff));background-image:-webkit-linear-gradient(left, #fff 0%, #fff 100%);background-image:-o-linear-gradient(left, #fff 0%, #fff 100%);background-image:linear-gradient(to right, #fff 0%, #fff 100%);background-image:-moz-linear-gradient(to right, #fff 0%, #fff 100%);width:100%;height:76rpx}.bargain .wrapper .tip{font-size:22rpx;color:#999;text-align:center;margin-top:20rpx}.bargain .wrapper .lock,.bargain .bargainGang .lock,.bargain .goodsDetails .lock{background-image:url('https://h5.yixiang.co/static/images/lock.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:548rpx;height:66rpx;position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:-43rpx;z-index:5}.bargain .bargainGang{margin:13rpx auto 0 auto}.bargain .bargainGang .title,.bargain .goodsDetails .title{font-size:32rpx;font-weight:bold;height:80rpx;margin-top:30rpx}.bargain .bargainGang .title .pictrue,.bargain .goodsDetails .title .pictrue{width:46rpx;height:24rpx}.bargain .bargainGang .title .pictrue.on,.bargain .goodsDetails .title .pictrue.on{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.bargain .bargainGang .title .pictrue image,.bargain .goodsDetails .title .pictrue image{width:100%;height:100%;display:block}.bargain .bargainGang .title .titleCon,.bargain .goodsDetails .title .titleCon{margin:0 20rpx}.bargain .bargainGang .list .item{border-bottom:1px dashed #ddd;height:112rpx}.bargain .bargainGang .list .item .pictxt{width:310rpx}.bargain .bargainGang .list .item .pictxt .pictrue{width:70rpx;height:70rpx}.bargain .bargainGang .list .item .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:.02px solid #eb3729}.bargain .bargainGang .list .item .pictxt .text{width:225rpx;font-size:20rpx;color:#999}.bargain .bargainGang .list .item .pictxt .text .name{font-size:25rpx;color:#282828;margin-bottom:7rpx}.bargain .bargainGang .list .item .money{font-size:25rpx}.bargain .bargainGang .list .item .money .iconfont{font-size:35rpx;vertical-align:middle;margin-right:10rpx}.bargain .bargainGang .load{font-size:24rpx;text-align:center;line-height:80rpx;height:80rpx}.bargain .goodsDetails{margin:13rpx auto 0 auto}.bargain .goodsDetails~.goodsDetails{margin-bottom:50rpx}.bargain .goodsDetails .conter{margin-top:20rpx}.bargain .goodsDetails .conter image{width:100% !important;display:block}.bargain .bargainTip{position:fixed;top:50%;left:50%;width:560rpx;margin-left:-280rpx;z-index:99;-webkit-border-radius:20rpx;border-radius:20rpx;background-color:#fff;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);padding-bottom:60rpx;margin-top:-330rpx}.bargain .bargainTip.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.bargain .bargainTip .pictrue{width:100%;height:321rpx;position:relative}.bargain .bargainTip .pictrue .iconfont{position:absolute;right:18rpx;top:18rpx;color:#fff;font-size:36rpx;width:50rpx;height:50rpx;text-align:center;line-height:50rpx}.bargain .bargainTip .pictrue image{width:100%;height:100%;-webkit-border-radius:20rpx 20rpx 0 0;border-radius:20rpx 20rpx 0 0}.bargain .bargainTip .cutOff{font-size:30rpx;color:#666;padding:0 29rpx;text-align:center;margin-top:50rpx}.bargain .bargainTip .cutOff.on{margin-top:26rpx}.bargain .bargainTip .help{font-size:32rpx;font-weight:bold;text-align:center;margin-top:40rpx}.bargain .bargainTip .tipBnt{font-size:32rpx;color:#fff;width:360rpx;height:82rpx;-webkit-border-radius:41rpx;border-radius:41rpx;background-image:-webkit-gradient(linear, left top, right top, from(#f67a38), to(#f11b09));background-image:-webkit-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:-o-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:linear-gradient(to right, #f67a38 0%, #f11b09 100%);background-image:-moz-linear-gradient(to right, #f67a38 0%, #f11b09 100%);text-align:center;line-height:82rpx;margin:50rpx auto 0 auto}.bargain-record .item{background-color:#fff;margin-bottom:12rpx}.bargain-record .item .picTxt{height:210rpx;border-bottom:1px solid #f0f0f0;padding:0 30rpx}.bargain-record .item .picTxt .pictrue{width:150rpx;height:150rpx}.bargain-record .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.bargain-record .item .picTxt .text{width:515rpx;font-size:30rpx;color:#282828;height:150rpx}.bargain-record .item .picTxt .text .time{font-size:24rpx;color:#868686}.bargain-record .item .picTxt .text .time .styleAll{color:#fc4141}.bargain-record .item .picTxt .text .money{font-size:24rpx}.bargain-record .item .picTxt .text .money .num{font-size:32rpx;font-weight:bold}.bargain-record .item .picTxt .text .money .symbol{font-weight:bold}.bargain-record .item .bottom{height:100rpx;padding:0 30rpx;font-size:27rpx}.bargain-record .item .bottom .purple{color:#f78513}.bargain-record .item .bottom .end{color:#999}.bargain-record .item .bottom .success{color:#e93323}.bargain-record .item .bottom .bnt{font-size:27rpx;color:#fff;width:176rpx;height:60rpx;-webkit-border-radius:6rpx;border-radius:6rpx;text-align:center;line-height:60rpx}.bargain-record .item .bottom .bnt.cancel{color:#aaa;border:1px solid #ddd}.bargain-record .item .bottom .bnt~.bnt{margin-left:18rpx}.group-list .header{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:450rpx}.group-list .header image{width:100%;height:450rpx}.group-list .list .item{width:690rpx;height:208rpx;background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;padding:0 24rpx;margin:0 auto 20rpx auto}.group-list .list .item .pictrue{width:160rpx;height:160rpx}.group-list .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.group-list .list .item .text{width:458rpx;font-size:30rpx;color:#282828}.group-list .list .item .text .team{height:40rpx;-webkit-border-radius:4rpx;border-radius:4rpx;font-size:22rpx;margin-top:20rpx}.group-list .list .item .text .team .iconfont{width:54rpx;background-color:#c6f3e8;text-align:center;color:#eb3729;height:100%;line-height:38rpx}.group-list .list .item .text .team .num{text-align:center;padding:0 10rpx}.group-list .list .item .text .bottom{margin-top:7rpx}.group-list .list .item .text .bottom .money{font-size:24rpx;font-weight:bold;color:#282828}.group-list .list .item .text .bottom .money .num{font-size:32rpx}.group-list .list .item .text .bottom .money .y-money{font-size:24rpx;color:#999;font-weight:normal;text-decoration:line-through;margin-left:10rpx}.group-list .list .item .text .bottom .groupBnt{font-size:26rpx;color:#fff;width:146rpx;height:54rpx;text-align:center;line-height:54rpx;-webkit-border-radius:4rpx;border-radius:4rpx}.group-list .list .item .text .bottom .groupBnt .iconfont{font-size:25rpx;margin-left:10rpx}.product-con .wrapper .share .money .y-money{color:#82848f;margin-left:13rpx;text-decoration:line-through;font-weight:normal}.product-con .notice{width:100%;height:62rpx;background-color:#ffedeb;margin-top:20rpx;padding:0 30rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.product-con .notice .num{font-size:24rpx}.product-con .notice .num .iconfont{font-size:30rpx;vertical-align:-3rpx;margin-right:20rpx}.product-con .notice .num .line{color:#282828;margin-left:15rpx}.product-con .notice .swiper{height:100%;width:470rpx;line-height:62rpx;overflow:hidden;margin-left:14rpx}.product-con .notice .swiper swiper{height:100%}.product-con .notice .swiper .swiper-slide{height:100%}.product-con .notice .swiper .line1{height:100%;overflow:hidden;font-size:20rpx;color:#282828}.product-con .assemble{background-color:#fff}.product-con .assemble .item{padding-right:30rpx;margin-left:30rpx;border-bottom:1px solid #f0f0f0;height:132rpx}.product-con .assemble .item .pictxt{width:295rpx}.product-con .assemble .item .pictxt .text{width:194rpx}.product-con .assemble .item .pictxt .pictrue{width:80rpx;height:80rpx}.product-con .assemble .item .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.product-con .assemble .item .right .lack{font-size:24rpx;color:#333333;text-align:right}.product-con .assemble .item .right .time{font-size:22rpx;color:#82848f;margin-top:5rpx}.product-con .assemble .item .right .spellBnt{font-size:24rpx;color:#fff;width:140rpx;height:50rpx;-webkit-border-radius:50rpx;border-radius:50rpx;background-image:-webkit-gradient(linear, left top, right top, from(#ff2358), to(#ff0000));background-image:-webkit-linear-gradient(left, #ff2358 0%, #ff0000 100%);background-image:-o-linear-gradient(left, #ff2358 0%, #ff0000 100%);background-image:linear-gradient(to right, #ff2358 0%, #ff0000 100%);background-image:-moz-linear-gradient(to right, #ff2358 0%, #ff0000 100%);text-align:center;line-height:50rpx;margin-left:30rpx}.product-con .assemble .item .right .spellBnt .iconfont{font-size:20rpx;margin-left:5rpx}.product-con .assemble .more{font-size:24rpx;color:#282828;text-align:center;height:90rpx;line-height:90rpx}.product-con .assemble .more .iconfont{margin-left:13rpx;font-size:25rpx}.product-con .playWay{background-color:#fff;padding:0 30rpx;margin-top:20rpx;font-size:28rpx;color:#282828}.product-con .playWay .title{height:86rpx;border-bottom:1px solid #eee}.product-con .playWay .title .iconfont{margin-left:13rpx;font-size:28rpx;color:#717171}.product-con .playWay .way{min-height:110rpx;font-size:26rpx;color:#282828}.product-con .playWay .way .iconfont{color:#cdcdcd;font-size:40rpx;margin:0 35rpx}.product-con .playWay .way .item .num{font-size:30rpx;margin-right:6rpx}.product-con .playWay .way .item .tip{font-size:22rpx;color:#a5a5a5}.product-con .footer-group{position:fixed;bottom:0;width:100%;height:100rpx;background-color:#fff;font-size:18rpx;color:#666;z-index:99}.product-con .footer-group .customerSer{width:14%;font-size:20rpx;color:#666}.product-con .footer-group .customerSer .iconfont{font-size:35rpx}.product-con .footer-group .bnt{width:86%;text-align:center;line-height:100rpx;height:100%;color:#fff;font-size:30rpx}.product-con .superior .slider-banner .swiper-pagination-bullet{background-color:#999}.product-con .superior .slider-banner .swiper-pagination-bullet-active{background-color:#e93323}.product-con .superior .slider-banner .swiper-container-horizontal>.swiper-pagination-bullets{bottom:0}.group-con .header{width:100%;height:186rpx;background-color:#fff;border-top:1px solid #f5f5f5;padding:0 30rpx;position:relative}.group-con .header .iconfont{font-size:100rpx;position:absolute;color:#ccc;right:33rpx;bottom:20rpx}.group-con .header .pictrue{width:140rpx;height:140rpx}.group-con .header .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.group-con .header .text{width:525rpx;font-size:30rpx;color:#222}.group-con .header .text .money{font-size:24rpx;font-weight:bold;margin-top:15rpx}.group-con .header .text .money .num{font-size:32rpx}.group-con .header .text .money .team{padding:1rpx 10rpx;font-weight:normal;-webkit-border-radius:50rpx;border-radius:50rpx;font-size:20rpx;vertical-align:4rpx;margin-left:15rpx}.group-con .wrapper{background-color:#fff;margin-top:20rpx;padding:2rpx 0 35rpx 0}.group-con .wrapper .title{margin-top:30rpx}.group-con .wrapper .title .line{width:136rpx;height:1px;background-color:#ddd}.group-con .wrapper .title .name{margin:0 45rpx;font-size:28rpx;color:#282828}.group-con .wrapper .title .name .time{margin:0 14rpx}.group-con .wrapper .title .name .timeTxt{color:#fc4141}.group-con .wrapper .title .name .time .styleAll{background-color:#ffcfcb;text-align:center;-webkit-border-radius:3rpx;border-radius:3rpx;font-size:28rpx;font-weight:bold;display:inline-block;vertical-align:middle;color:#fc4141;padding:2rpx 5rpx}.group-con .wrapper .tips{font-size:30rpx;font-weight:bold;text-align:center;margin-top:30rpx;color:#999}.group-con .wrapper .list{padding:0 30rpx;margin-top:45rpx}.group-con .wrapper .list.result{max-height:240rpx;overflow:hidden}.group-con .wrapper .list.result.on{max-height:2000rpx}.group-con .wrapper .list .pictrue{width:94rpx;height:94rpx;margin:0 0 29rpx 35rpx}.group-con .wrapper .list .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:2rpx solid #e93323}.group-con .wrapper .list .pictrue img.img-none{border:none}.group-con .wrapper .lookAll{font-size:24rpx;color:#282828;padding-top:10rpx}.group-con .wrapper .lookAll .iconfont{font-size:25rpx;margin:2rpx 0 0 10rpx}.group-con .wrapper .teamBnt{font-size:30rpx;width:620rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;color:#fff;margin:21rpx auto 0 auto}.group-con .wrapper .cancel,.group-con .wrapper .lookOrder{text-align:center;font-size:24rpx;color:#282828;padding-top:30rpx}.group-con .wrapper .cancel .iconfont{font-size:35rpx;color:#2c2c2c;vertical-align:-4rpx;margin-right:9rpx}.group-con .wrapper .lookOrder .iconfont{font-size:25rpx;color:#2c2c2c;margin-left:10rpx}.group-con .group-recommend{background-color:#fff;margin-top:25rpx}.group-con .group-recommend .title{padding-right:30rpx;margin-left:30rpx;height:85rpx;border-bottom:1px solid #eee;font-size:28rpx;color:#282828}.group-con .group-recommend .title .more{color:#808080}.group-con .group-recommend .title .more .iconfont{margin-left:13rpx;font-size:28rpx}.group-con .group-recommend .list{margin-top:30rpx}.group-con .group-recommend .list .item{width:210rpx;margin:0 0 25rpx 30rpx}.group-con .group-recommend .list .item .pictrue{width:100%;height:210rpx;position:relative}.group-con .group-recommend .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:10rpx;border-radius:10rpx}.group-con .group-recommend .list .item .pictrue .team{position:absolute;top:28rpx;left:-5rpx;min-width:100rpx;height:36rpx;line-height:36rpx;text-align:center;-webkit-border-radius:0 18rpx 18rpx 0;border-radius:0 18rpx 18rpx 0;font-size:20rpx;color:#fff;background-image:-webkit-gradient(linear, left top, right top, from(#fb5445), to(#e93323));background-image:-webkit-linear-gradient(left, #fb5445 0%, #e93323 100%);background-image:-o-linear-gradient(left, #fb5445 0%, #e93323 100%);background-image:linear-gradient(to right, #fb5445 0%, #e93323 100%);background-image:-moz-linear-gradient(to right, #fb5445 0%, #e93323 100%)}.group-con .group-recommend .list .item .name{font-size:28rpx;color:#333;margin-top:18rpx}.group-con .group-recommend .list .item .money{font-weight:bold;font-size:26rpx}.evaluate-list .generalComment{height:94rpx;padding:0 30rpx;background-color:#fff;font-size:28rpx;color:#808080}.evaluate-list .generalComment .evaluate{margin-right:7rpx}.evaluate-list .nav{font-size:24rpx;color:#282828;padding:0 30rpx 15rpx 30rpx;background-color:#fff;border-bottom:1px solid #f5f5f5}.evaluate-list .nav .item{font-size:24rpx;color:#282828;-webkit-border-radius:6rpx;border-radius:6rpx;height:54rpx;padding:0 20rpx;background-color:#f4f4f4;line-height:54rpx;margin:0 17rpx 17rpx 0}.evaluate-list .nav .item.bg-color-red{color:#fff}.evaluate-con .score{background-color:#fff;border-top:1px solid #f5f5f5;font-size:28rpx;color:#282828;padding:48rpx 30rpx 65rpx 30rpx}.evaluate-con .score .item~.item{margin-top:25rpx}.evaluate-con .score .item .starsList{padding:0 35rpx 0 40rpx}.evaluate-con .score .item .starsList .iconfont{font-size:40rpx;color:#aaa}.evaluate-con .score .item .starsList .iconfont~.iconfont{margin-left:20rpx}.evaluate-con .score .item .evaluate{color:#aaa;font-size:24rpx}.evaluate-con .score .textarea{width:690rpx;background-color:#fafafa;-webkit-border-radius:10rpx;border-radius:10rpx;margin-top:48rpx}.evaluate-con .score .textarea textarea{font-size:28rpx;padding:38rpx 30rpx 0 30rpx;width:100%;height:160rpx}.evaluate-con .score .textarea textarea::-webkit-input-placeholder{color:#bbb}.evaluate-con .score .textarea textarea::-moz-placeholder{color:#bbb}.evaluate-con .score .textarea textarea:-ms-input-placeholder{color:#bbb}.evaluate-con .score .textarea textarea::-ms-input-placeholder{color:#bbb}.evaluate-con .score .textarea textarea::placeholder{color:#bbb}.evaluate-con .score .textarea .list{margin-top:25rpx;padding-left:5rpx}.evaluate-con .score .textarea .list .pictrue{width:140rpx;height:140rpx;margin:0 0 35rpx 25rpx;position:relative;font-size:22rpx;color:#bbb}.evaluate-con .score .textarea .list .pictrue image{width:100%;height:100%;-webkit-border-radius:3rpx;border-radius:3rpx}.evaluate-con .score .textarea .list .pictrue .icon-guanbi1{font-size:45rpx;position:absolute;top:-20rpx;right:-20rpx}.evaluate-con .score .textarea .list .pictrue .icon-icon25201{color:#bfbfbf;font-size:50rpx}.evaluate-con .score .evaluateBnt{font-size:30rpx;color:#fff;width:690rpx;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;text-align:center;line-height:86rpx;margin-top:45rpx}.sign .header{width:100%;height:310rpx}.sign .header .headerCon{padding:0 0 0 30rpx;height:234rpx}.sign .header .headerCon .left{width:530rpx;font-size:32rpx;color:#fff;font-weight:bold}.sign .header .headerCon .left .integral text{font-size:24rpx;margin-top:19rpx;background-color:#ff9000;text-align:center;-webkit-border-radius:6rpx;border-radius:6rpx;font-weight:normal;padding:6rpx 15rpx}.sign .header .headerCon .text{width:410rpx}.sign .header .headerCon .left .pictrue{width:86rpx;height:86rpx;-webkit-border-radius:50%;border-radius:50%;border:4rpx solid #ecddbc}.sign .header .headerCon .left .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.sign .header .headerCon .right{width:142rpx;height:66rpx;background-color:#fff;-webkit-border-radius:50rpx 0 0 50rpx;border-radius:50rpx 0 0 50rpx;font-size:24rpx;color:#ff9000}.sign .header .headerCon .right .iconfont{font-size:33rpx;padding:0 10rpx 0 30rpx;height:35rpx;line-height:35rpx}.sign .wrapper{background-color:#fff;margin:-80rpx 20rpx 0 20rpx;-webkit-border-radius:15rpx;border-radius:15rpx;padding-bottom:80rpx;position:relative}.sign .wrapper .list{padding:0 30rpx;height:240rpx}.sign .wrapper .list .item{font-size:22rpx;color:#8a8886;text-align:center}.sign .wrapper .list .item .rewardTxt{width:74rpx;height:32rpx;background-color:#f4b409;-webkit-border-radius:16rpx;border-radius:16rpx;font-size:20rpx;color:#a57d3f;line-height:32rpx}.sign .wrapper .list .item .num{font-size:30rpx;color:#999}.sign .wrapper .list .item .num.on{color:#ff9000}.sign .wrapper .list .item .venus{background-image:url('https://h5.yixiang.co/static/images/stars2.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:56rpx;height:56rpx;margin:10rpx 0}.sign .wrapper .list .item .venus.venusSelect{background-image:url('https://h5.yixiang.co/static/images/stars1.png')}.sign .wrapper .list .item .venus.reward{background-image:url('https://h5.yixiang.co/static/images/stars3.png');width:75rpx;height:56rpx}.sign .wrapper .but{width:400rpx;height:76rpx;font-size:30rpx;line-height:76rpx;color:#fff;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;margin:0 auto}.sign .wrapper .but.on{background-color:#999 !important}.sign .wrapper .lock{background-image:url('https://h5.yixiang.co/static/images/lock2.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:558rpx;height:68rpx;position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:-41rpx;z-index:9}.sign .wrapper2{margin-top:15rpx;padding:73rpx 0 0 0}.sign .wrapper2 .tip{font-size:30rpx;color:#666;text-align:center}.sign .wrapper2 .list2{margin:45rpx 0 49rpx 0}.sign .wrapper2 .list2 .item{width:80rpx;height:116rpx;background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;color:#fff;font-size:72rpx;text-align:center;line-height:116rpx;margin-right:19rpx;background-image:url('https://h5.yixiang.co/static/images/redBg.png')}.sign .wrapper2 .list2 .data{font-size:30rpx;color:#232323}.sign .wrapper2 .tip2{font-size:30rpx;color:#999999;padding:0 55rpx;text-align:center;line-height:1.5}.sign .list3{margin:45rpx 37rpx 0 37rpx;border-top:1px dashed #eee}.sign .list3 .item{border-bottom:1px solid #eee;height:130rpx}.sign .list3 .item .name{color:#232323;font-size:30rpx;width:400rpx}.sign .list3 .item .data{font-size:24rpx;color:#bbbbbb;margin-top:9rpx}.sign .list3 .item .num{font-size:36rpx;font-family:'GuildfordProBook 5'}.sign .signTip{width:644rpx;height:645rpx;position:fixed;top:50%;left:50%;margin-left:-322rpx;margin-top:-322.5rpx;z-index:99;text-align:center;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.sign .signTip .signTipLight{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:100%}.sign .signTip.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.sign .signTip .signTipCon{background-image:url('https://h5.yixiang.co/static/images/register.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:420rpx;height:420rpx;margin-top:-700rpx;position:relative}.sign .signTip .signTipCon .state{font-size:34rpx;color:#fff;margin-top:150rpx}.sign .signTip .signTipCon .integral{font-size:30rpx;color:rgba(255,255,255,0.6);margin-top:9rpx}.sign .signTip .signTipCon .signTipBnt{font-size:30rpx;color:#eb4331;width:260rpx;height:76rpx;background-color:#f8d168;-webkit-border-radius:38rpx;border-radius:38rpx;line-height:76rpx;margin:48rpx auto 0 auto}.sign-record .list .item .data{height:80rpx;line-height:80rpx;padding:0 30rpx;font-size:24rpx;color:#666}.sign-record .list .item .listn{background-color:#fff;font-size:24rpx;color:#999}.sign-record .list .item .listn .itemn{height:120rpx;border-bottom:1px solid #eee;padding-right:30rpx;margin-left:30rpx}.sign-record .list .item .listn .itemn .name{width:390rpx;font-size:28rpx;color:#282828;margin-bottom:6rpx}.sign-record .list .item .listn .itemn .num{font-size:36rpx;font-family:'GuildfordProBook 5';color:#16ac57}.apply-return .list{background-color:#fff;margin-top:18rpx}.apply-return .list .item{margin-left:30rpx;padding-right:30rpx;min-height:90rpx;border-bottom:1px solid #eee;font-size:30rpx;color:#333}.apply-return .list .item .num{color:#282828;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:right;position:relative}.apply-return .list .item .num .picker{text-align:right}.apply-return .list .item .num .iconfont{color:#666;font-size:30rpx;position:absolute;right:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.apply-return .list .item.textarea{padding:30rpx 30rpx 30rpx 0}.apply-return .list .item textarea{height:100rpx;font-size:30rpx}.apply-return .list .item textarea::-webkit-input-placeholder{color:#bbb}.apply-return .list .item textarea::-moz-placeholder{color:#bbb}.apply-return .list .item textarea:-ms-input-placeholder{color:#bbb}.apply-return .list .item textarea::-ms-input-placeholder{color:#bbb}.apply-return .list .item textarea::placeholder{color:#bbb}.apply-return .list .item .title{height:95rpx;width:100%}.apply-return .list .item .title .tip{font-size:30rpx;color:#bbb}.apply-return .list .item .upload{padding-bottom:36rpx}.apply-return .list .item .upload .pictrue{margin:22rpx 23rpx 0 0;width:156rpx;height:156rpx;position:relative;font-size:24rpx;color:#bbb;border:1px solid #bbb}.apply-return .list .item .upload .pictrue:nth-of-type(4n){margin-right:0}.apply-return .list .item .upload .pictrue image{width:100%;height:100%;-webkit-border-radius:3rpx;border-radius:3rpx}.apply-return .list .item .upload .pictrue .icon-guanbi1{position:absolute;font-size:45rpx;top:-10rpx;right:-10rpx;width:45rpx;height:45rpx;line-height:45rpx}.apply-return .list .item .upload .pictrue .icon-icon25201{color:#bfbfbf;font-size:50rpx;width:50rpx;height:60rpx;line-height:60rpx}.apply-return .list .item .upload .pictrue:nth-last-child(1){border:1px solid #ddd}.apply-return .returnBnt{font-size:32rpx;color:#fff;width:690rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;margin:43rpx auto}.return-list .goodWrapper{background-color:#fff;margin-bottom:13rpx;position:relative}.return-list .goodWrapper .orderNum{padding:0 30rpx;border-bottom:1px solid #eee;height:87rpx;line-height:87rpx;font-size:30rpx;color:#282828}.return-list .goodWrapper .item{border-bottom:0}.return-list .goodWrapper .totalSum{padding:0 30rpx 32rpx 30rpx;text-align:right;font-size:26rpx;color:#282828}.return-list .goodWrapper .totalSum .price{font-size:28rpx;font-weight:bold}.return-list .goodWrapper .iconfont{position:absolute;font-size:109rpx;top:7rpx;right:30rpx;color:#ccc;width:109rpx;height:109rpx;line-height:109rpx}.return-list .goodWrapper .iconfont.powder{color:#f8c1bd}.collectionGoods{background-color:#fff;border-top:1px solid #eee}.collectionGoods .item{margin-left:30rpx;padding-right:30rpx;border-bottom:1px solid #eee;height:180rpx}.collectionGoods .item .pictrue{width:130rpx;height:130rpx}.collectionGoods .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.collectionGoods .item .text{width:535rpx;height:130rpx;font-size:28rpx;color:#282828}.collectionGoods .item .text .infor{width:100%}.collectionGoods .item .text .money{font-size:26rpx}.collectionGoods .item .text .delete{font-size:26rpx;color:#282828;width:114rpx;height:46rpx;border:1px solid #bbb;-webkit-border-radius:4rpx;border-radius:4rpx;text-align:center;line-height:46rpx}.searchGood .search{padding-left:30rpx}.searchGood .search{margin-top:20rpx}.searchGood .search .input{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#f7f7f7;-webkit-border-radius:33rpx;border-radius:33rpx;padding:0 35rpx;height:66rpx}.searchGood .search .input input{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-size:28rpx;margin-left:15rpx}.searchGood .search .input input::-webkit-input-placeholder{color:#bbb}.searchGood .search .input input::-moz-placeholder{color:#bbb}.searchGood .search .input input:-ms-input-placeholder{color:#bbb}.searchGood .search .input input::-ms-input-placeholder{color:#bbb}.searchGood .search .input input::placeholder{color:#bbb}.searchGood .search .input .iconfont{color:#000;font-size:35rpx}.searchGood .search .bnt{width:120rpx;text-align:center;height:66rpx;line-height:66rpx;font-size:30rpx;color:#282828}.searchGood .title{font-size:28rpx;color:#999;margin:50rpx 30rpx 25rpx 30rpx}.searchGood .list{padding-left:10rpx}.searchGood .list .item{font-size:26rpx;color:#454545;padding:0 21rpx;height:60rpx;-webkit-border-radius:3rpx;border-radius:3rpx;line-height:60rpx;border:1px solid #aaa;margin:0 0 20rpx 20rpx}.searchGood .line{border-bottom:1px solid #eee;margin:20rpx 30rpx 0 30rpx}.cash-withdrawal .nav{height:130rpx;-webkit-box-shadow:0 10rpx 10rpx #f8f8f8;box-shadow:0 10rpx 10rpx #f8f8f8;-moz-box-shadow:0 10rpx 10rpx #f8f8f8;-o-box-shadow:0 10rpx 10rpx #f8f8f8}.cash-withdrawal .nav .item{font-size:26rpx;-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center}.cash-withdrawal .nav .item~.item{border-left:1px solid #f0f0f0}.cash-withdrawal .nav .item .iconfont{width:40rpx;height:40rpx;-webkit-border-radius:50%;border-radius:50%;border:2rpx solid #e93323;text-align:center;line-height:37rpx;margin:0 auto 6rpx auto;font-size:22rpx}.cash-withdrawal .nav .item .iconfont.on{background-color:#e93323;color:#fff;border-color:#e93323}.cash-withdrawal .nav .item .line{width:2rpx;height:20rpx;margin:0 auto;-webkit-transition:height .3s;-o-transition:height .3s;transition:height .3s}.cash-withdrawal .nav .item .line.on{height:39rpx}.cash-withdrawal .wrapper .list{padding:0 30rpx}.cash-withdrawal .wrapper .list .item{border-bottom:1px solid #eee;height:107rpx;font-size:30rpx;color:#333}.cash-withdrawal .wrapper .list .item .name{width:130rpx}.cash-withdrawal .wrapper .list .item .input{width:505rpx}.cash-withdrawal .wrapper .list .item .input input::-webkit-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input::-moz-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input:-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input::-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input::placeholder{color:#bbb}.cash-withdrawal .wrapper .list .tip{font-size:26rpx;color:#999;margin-top:25rpx}.cash-withdrawal .wrapper .list .bnt{font-size:32rpx;color:#fff;width:690rpx;height:90rpx;text-align:center;-webkit-border-radius:50rpx;border-radius:50rpx;line-height:90rpx;margin:64rpx auto}.cash-withdrawal .wrapper .list .tip2{font-size:26rpx;color:#999;text-align:center;margin:44rpx 0 20rpx 0}.cash-withdrawal .wrapper .list .value{height:135rpx;line-height:135rpx;border-bottom:1px solid #eee;width:690rpx;margin:0 auto}.cash-withdrawal .wrapper .list .value input{font-size:80rpx;color:#282828;height:135rpx;text-align:center;width:100%}.cash-withdrawal .wrapper .list .value input::-webkit-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input::-moz-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input:-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input::-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input::placeholder{color:#bbb}.cash-audit{width:710rpx;background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;margin:25rpx auto 0 auto;padding:53rpx 0 58rpx 0;left:50%;margin-left:-355rpx}.cash-audit .pictrue{width:214rpx;height:179rpx;margin:0 auto}.cash-audit .pictrue image{width:100%;height:100%}.cash-audit .tip{font-size:32rpx;color:#282828;margin-top:40rpx;text-align:center;padding:0 40rpx}.cash-audit .time{font-size:26rpx;color:#999;text-align:center;margin-top:15rpx}.cash-audit .bnt{font-size:32rpx;color:#fff;width:500rpx;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;text-align:center;line-height:86rpx;margin:50rpx auto 0 auto}.promoter-order .list .item .title{height:133rpx;padding:0 30rpx;font-size:26rpx;color:#999}.promoter-order .list .item .title .data{font-size:28rpx;color:#282828;margin-bottom:5rpx}.promoter-order .list .item .listn .itenm{background-color:#fff}.promoter-order .list .item .listn .itenm~.itenm{margin-top:12rpx}.promoter-order .list .item .listn .itenm .top{margin-left:30rpx;padding-right:30rpx;border-bottom:1px solid #eee;height:100rpx}.promoter-order .list .item .listn .itenm .top .pictxt{width:320rpx}.promoter-order .list .item .listn .itenm .top .pictxt .text{width:230rpx;font-size:30rpx;color:#282828}.promoter-order .list .item .listn .itenm .top .pictxt .pictrue{width:66rpx;height:66rpx}.promoter-order .list .item .listn .itenm .top .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:3rpx solid #fff;-webkit-box-shadow:0 0 10rpx #aaa;box-shadow:0 0 10rpx #aaa;-moz-box-shadow:0 0 10rpx #aaa;-o-box-shadow:0 0 10rpx #aaa;-webkit-box-sizing:border-box;box-sizing:border-box}.promoter-order .list .item .listn .itenm .top .money{font-size:28rpx}.promoter-order .list .item .listn .itenm .bottom{padding:20rpx 30rpx;font-size:28rpx;color:#666;line-height:1.6}.promoter-order .list .item .listn .itenm .bottom .name{color:#999}.promoter-list .header{padding-bottom:12rpx}.promoter-list .nav{background-color:#fff;height:86rpx;line-height:86rpx;font-size:28rpx;color:#282828;border-bottom:1px solid #eee}.promoter-list .nav .item{height:100%}.promoter-list .nav .item.on{color:#eb3729;border-bottom:5rpx solid #eb3729}.promoter-list .search{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;background-color:#fff;height:86rpx;padding:0 30rpx}.promoter-list .search .input{width:630rpx;height:60rpx;-webkit-border-radius:50rpx;border-radius:50rpx;background-color:#f5f5f5;text-align:center;position:relative}.promoter-list .search .input input{height:100%;font-size:26rpx;width:620rpx;text-align:center}.promoter-list .search .input input::-webkit-input-placeholder{color:#bbb}.promoter-list .search .input input::-moz-placeholder{color:#bbb}.promoter-list .search .input input:-ms-input-placeholder{color:#bbb}.promoter-list .search .input input::-ms-input-placeholder{color:#bbb}.promoter-list .search .input input::placeholder{color:#bbb}.promoter-list .search .input .iconfont{position:absolute;right:28rpx;color:#999;font-size:28rpx;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.promoter-list .search .iconfont{font-size:40rpx;color:#515151}.promoter-list .list .sortNav{background-color:#fff;height:76rpx;border-bottom:1px solid #eee;color:#333;font-size:28rpx}.promoter-list .list .sortNav.on{position:fixed;top:0;left:0;width:100%;z-index:5}.promoter-list .list .sortNav .sortItem{text-align:center;-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1}.promoter-list .list .sortNav .sortItem image{width:24rpx;height:24rpx;margin-left:6rpx;vertical-align:-3rpx}.promoter-list .list .sortList{margin-top:76rpx}.promoter-list .list .item{background-color:#fff;border-bottom:1px solid #eee;height:152rpx;padding:0 30rpx 0 20rpx;font-size:24rpx;color:#666}.promoter-list .list .item .picTxt{width:440rpx}.promoter-list .list .item .picTxt .pictrue{width:106rpx;height:106rpx;-webkit-border-radius:50%;border-radius:50%}.promoter-list .list .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:3rpx solid #fff;-webkit-box-shadow:0 0 7rpx #aaa;box-shadow:0 0 7rpx #aaa;-moz-box-shadow:0 0 7rpx #aaa;-o-box-shadow:0 0 7rpx #aaa;-webkit-box-sizing:border-box;box-sizing:border-box}.promoter-list .list .item .picTxt .text{width:304rpx;font-size:24rpx;color:#666}.promoter-list .list .item .picTxt .text .name{font-size:28rpx;color:#333;margin-bottom:13rpx}.promoter-list .list .item .right{width:240rpx;text-align:right;font-size:22rpx;color:#333}.my-promotion .header{background-image:url("https://h5.yixiang.co/static/images/promotionBg.png");background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:375rpx}.my-promotion .header .name{font-size:30rpx;color:#fff;padding-top:57rpx;position:relative}.my-promotion .header .name .record{font-size:26rpx;color:rgba(255,255,255,0.8);position:absolute;right:20rpx}.my-promotion .header .name .record .iconfont{font-size:25rpx;margin-left:10rpx}.my-promotion .header .num{text-align:center;color:#fff;font-size:90rpx;font-family:'GuildfordProBook 5'}.my-promotion .header .profit{padding:0 20rpx;margin-top:33rpx;font-size:24rpx;color:rgba(255,255,255,0.8)}.my-promotion .header .profit .item{min-width:200rpx;text-align:center}.my-promotion .header .profit .item .money{font-size:34rpx;color:#fff}.my-promotion .bnt{font-size:28rpx;color:#fff;width:258rpx;height:68rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:68rpx;margin:-32rpx auto 0 auto}.my-promotion .list{padding:0 20rpx;margin-top:10rpx}.my-promotion .list .item{width:345rpx;height:240rpx;-webkit-border-radius:20rpx;border-radius:20rpx;background-color:#fff;margin-top:20rpx;font-size:30rpx;color:#666}.my-promotion .list .item .iconfont{font-size:70rpx;margin-bottom:20rpx;color:#eb3729}.my-account .wrapper{background-color:#fff;padding:32rpx 0 34rpx 0;margin-bottom:14rpx}.my-account .wrapper .header{width:690rpx;height:330rpx;background-image:-webkit-gradient(linear, left top, right top, from(#eb3729), to(#eb3729));background-image:-webkit-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:-o-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:linear-gradient(to right, #eb3729 0%, #eb3729 100%);background-image:-moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%);-webkit-border-radius:16rpx;border-radius:16rpx;margin:0 auto;color:rgba(255,255,255,0.6);font-size:24rpx}.my-account .wrapper .header .headerCon{background-image:url('https://h5.yixiang.co/static/images/accountBg.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100%;height:100%;width:100%;padding:36rpx 0 29rpx 0}.my-account .wrapper .header .headerCon .account{padding:0 35rpx}.my-account .wrapper .header .headerCon .account .assets .money{font-size:72rpx;color:#fff;font-family:'GuildfordProBook 5';margin-top:10rpx;height:75rpx;line-height:75rpx}.my-account .wrapper .header .headerCon .account .recharge{font-size:28rpx;width:150rpx;height:54rpx;-webkit-border-radius:27rpx;border-radius:27rpx;background-color:#fff9f8;text-align:center;line-height:54rpx}.my-account .wrapper .header .headerCon .cumulative{margin-top:46rpx}.my-account .wrapper .header .headerCon .cumulative .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;padding-left:35rpx}.my-account .wrapper .header .headerCon .cumulative .item .money{font-size:48rpx;font-family:'GuildfordProBook 5';color:#fff;margin-top:6rpx}.my-account .wrapper .nav{height:155rpx;border-bottom:1px solid #f5f5f5}.my-account .wrapper .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:26rpx;color:#999}.my-account .wrapper .nav .item .pictrue{width:44rpx;height:44rpx;margin:0 auto;margin-bottom:20rpx}.my-account .wrapper .nav .item .pictrue image{width:100%;height:100%}.my-account .wrapper .advert{padding:0 30rpx;margin-top:30rpx}.my-account .wrapper .advert .item{background-color:#fff6d1;width:332rpx;height:118rpx;-webkit-border-radius:10rpx;border-radius:10rpx;padding:0 27rpx 0 25rpx;font-size:24rpx;color:#e44609}.my-account .wrapper .advert .item.on{background-color:#fff3f3;color:#e96868}.my-account .wrapper .advert .item .pictrue{width:78rpx;height:78rpx}.my-account .wrapper .advert .item .pictrue image{width:100%;height:100%}.my-account .wrapper .advert .item .text .name{font-size:30rpx;font-weight:bold;color:#f33c2b;margin-bottom:7rpx}.my-account .wrapper .advert .item.on .text .name{color:#f64051}.my-account .wrapper .list{padding:0 30rpx}.my-account .wrapper .list .item{margin-top:44rpx}.my-account .wrapper .list .item .picTxt .iconfont{width:82rpx;height:82rpx;-webkit-border-radius:50%;border-radius:50%;background-image:-webkit-gradient(linear, left top, right top, from(#ff9389), to(#f9776b));background-image:-webkit-linear-gradient(left, #ff9389 0%, #f9776b 100%);background-image:-o-linear-gradient(left, #ff9389 0%, #f9776b 100%);background-image:linear-gradient(to right, #ff9389 0%, #f9776b 100%);background-image:-moz-linear-gradient(to right, #ff9389 0%, #f9776b 100%);text-align:center;line-height:82rpx;color:#fff;font-size:40rpx}.my-account .wrapper .list .item .picTxt .iconfont.yellow{background-image:-webkit-gradient(linear, left top, right top, from(#ffccaa), to(#fea060));background-image:-webkit-linear-gradient(left, #ffccaa 0%, #fea060 100%);background-image:-o-linear-gradient(left, #ffccaa 0%, #fea060 100%);background-image:linear-gradient(to right, #ffccaa 0%, #fea060 100%);background-image:-moz-linear-gradient(to right, #ffccaa 0%, #fea060 100%)}.my-account .wrapper .list .item .picTxt .iconfont.green{background-image:-webkit-gradient(linear, left top, right top, from(#a1d67c), to(#9dd074));background-image:-webkit-linear-gradient(left, #a1d67c 0%, #9dd074 100%);background-image:-o-linear-gradient(left, #a1d67c 0%, #9dd074 100%);background-image:linear-gradient(to right, #a1d67c 0%, #9dd074 100%);background-image:-moz-linear-gradient(to right, #a1d67c 0%, #9dd074 100%)}.my-account .wrapper .list .item .picTxt{width:428rpx;font-size:30rpx;color:#282828}.my-account .wrapper .list .item .picTxt .text{width:317rpx}.my-account .wrapper .list .item .picTxt .text .infor{font-size:24rpx;color:#999;margin-top:5rpx}.my-account .wrapper .list .item .bnt{font-size:26rpx;color:#282828;width:156rpx;height:52rpx;border:1px solid #ddd;-webkit-border-radius:26rpx;border-radius:26rpx;text-align:center;line-height:50rpx}.my-account .wrapper .list .item .bnt.end{font-size:26rpx;color:#aaa;background-color:#f2f2f2;border-color:#f2f2f2}.bill-details .nav{background-color:#fff;height:90rpx;width:100%;line-height:90rpx}.bill-details .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:30rpx;color:#282828;height:100%}.bill-details .nav .item.on{color:#e93323;border-bottom:3rpx solid #e93323}.flash-sale .header{width:100%;height:240rpx}.flash-sale .header image{width:100%;height:100%}.flash-sale .whiteFixed{position:fixed;top:0;background-color:#fff;left:0;width:100%;z-index:5}.flash-sale .timeLsit{width:100%;white-space:nowrap;overflow:hidden;height:110rpx}.flash-sale .timeLsit .rush-time{overflow-y:hidden;overflow-x:auto;width:100%;height:150rpx}.flash-sale .timeLsit .item{display:inline-block;font-size:22rpx;color:#282828;width:200rpx;text-align:center;padding:11rpx 0;height:96rpx;background-color:#efc58f}.flash-sale .timeLsit .item~.item{border-left:1px solid #e3b06e}.flash-sale .timeLsit .item .time{font-size:32rpx;font-weight:bold;height:37rpx;line-height:37rpx}.flash-sale .timeLsit .item.on{background-color:#e93323;color:#fff;position:relative}.flash-sale .timeLsit .item.on::before{content:"";width:0;height:0;border-left:8rpx solid transparent;border-right:8rpx solid transparent;border-top:10rpx solid #e93323;position:absolute;bottom:-9rpx;z-index:99;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.flash-sale .countDown{height:92rpx;border-bottom:1px solid #f0f0f0;font-size:28rpx;color:#282828}.flash-sale .countDown .timeTxt{color:#fc4141}.flash-sale .countDown .time{font-size:28rpx;color:#282828}.flash-sale .countDown .styleAll{font-size:28rpx;font-weight:bold;background-color:#ffcfcb;padding:4rpx 7rpx;-webkit-border-radius:3rpx;border-radius:3rpx;color:#fc4141}.flash-sale .list.on{margin-top:202rpx}.flash-sale .list .item{padding:0 30rpx;border-bottom:1px solid #f0f0f0;height:227rpx;position:relative}.flash-sale .list .item .pictrue{width:166rpx;height:166rpx}.flash-sale .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.flash-sale .list .item .text{width:500rpx;font-size:30rpx;color:#333;height:166rpx}.flash-sale .list .item .text .money{font-size:24rpx;color:#282828;margin-top:-13rpx}.flash-sale .list .item .text .money .num{font-size:34rpx;font-weight:bold}.flash-sale .list .item .text .progress{overflow:hidden;background-color:#fff;width:260rpx;-webkit-border-radius:20rpx;border-radius:20rpx;height:34rpx;position:relative}.flash-sale .list .item .text .progress .bg-red{width:0;height:100%;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;background-color:#ffe3e1}.flash-sale .list .item .text .progress .piece{position:absolute;left:0;right:0;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);top:49%;font-size:22rpx;word-wrap:normal;text-align:center}.flash-sale .list .item .grab{font-size:28rpx;color:#fff;width:140rpx;height:54rpx;-webkit-border-radius:4rpx;border-radius:4rpx;text-align:center;line-height:54rpx;position:absolute;right:30rpx;bottom:30rpx}.product-con .nav{-webkit-box-sizing:border-box;box-sizing:border-box;background-image:url('https://h5.yixiang.co/static/images/rushBuy.jpg');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:100rpx;padding:0 30rpx}.product-con .nav .money{font-size:28rpx;color:#fff}.product-con .nav .money .num{font-size:48rpx}.product-con .nav .money .y-money{font-size:26rpx;margin-left:10rpx;text-decoration:line-through}.product-con .nav .times{font-size:20rpx;color:#fff;text-align:center;margin-bottom:4rpx}.product-con .nav .times .time{margin-top:7rpx}.product-con .nav .times .time .styleAll{padding:0 7rpx;font-size:22rpx;color:#ff3d3d;background-color:#fff;-webkit-border-radius:2rpx;border-radius:2rpx}.product-con .nav .iconfont{color:#fff;font-size:30rpx;margin-left:20rpx}.product-con .wrapperRush{padding:32rpx 30rpx;background-color:#fff}.product-con .wrapperRush .introduce .infor{width:570rpx;font-size:32rpx;font-weight:bold}.product-con .wrapperRush .introduce .iconfont{font-size:37rpx;color:#515151}.product-con .wrapperRush .label{margin:18rpx 0 0 0;font-size:24rpx;color:#82848f}.product-con .wrapperRush .label .stock{width:255rpx;margin-right:28rpx}.product-con .footerRush{position:fixed;bottom:0;width:100%;height:100rpx;background-color:#fff;font-size:18rpx;color:#666;z-index:99}.product-con .footerRush .customerSer{width:14%;font-size:20rpx;color:#666}.product-con .footerRush .bnt{width:100%;text-align:center;line-height:100rpx;height:100%;color:#fff;font-size:30rpx}.newsList .swiperNews{width:690rpx;height:367rpx;margin:30rpx auto 0 auto}.newsList .swiperNews .swiper-slide{width:100%;height:330rpx}.newsList .swiperNews .slide-image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.newsList .swiperNews .swiper-pagination-bullet{width:12rpx;height:12rpx;-webkit-border-radius:0;border-radius:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 100%;transform-origin:0 100%;-ms-transform-origin:0 100%;-o-transform-origin:0 100%;background-color:#d1d1d1;opacity:1;margin:0 10rpx}.newsList .swiperNews .swiper-pagination-bullet-active{background-color:#666666;border:0}.newsList .swiperNews .swiper-pagination{bottom:-7rpx;width:100%}.newsList .nav{padding:0 30rpx;width:100%;height:105rpx;overflow:hidden;background-color:#fff}.newsList .nav.on{position:fixed;top:0;left:0;width:100%;z-index:5}.newsList .nav .scrollNav{white-space:nowrap;overflow-y:hidden;overflow-x:auto;width:100%}.newsList .nav .item{display:inline-block;font-size:32rpx;color:#999;margin-top:40rpx}.newsList .nav .item.on{color:#282828}.newsList .nav .item~.item{margin-left:46rpx}.newsList .nav .item .line{width:24rpx;height:4rpx;-webkit-border-radius:2rpx;border-radius:2rpx;margin:10rpx auto 0 auto}.newsList .list.on{margin-top:105rpx}.newsList .list .item{margin:0 30rpx;border-bottom:1px solid #f0f0f0;padding:35rpx 0}.newsList .list .item .pictrue{width:250rpx;height:156rpx}.newsList .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.newsList .list .item .text{width:420rpx;height:156rpx;font-size:24rpx;color:#999}.newsList .list .item .text .name{font-size:30rpx;color:#282828}.newsList .list .item .picList .pictrue{width:335rpx;height:210rpx;margin-top:30rpx}.newsList .list .item .picList.on .pictrue{width:217rpx;height:136rpx}.newsList .list .item .picList .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.newsList .list .item .time{text-align:right;font-size:24rpx;color:#999;margin-top:22rpx}.newsList .van-tabs__wrap{top:0 !important}.newsDetail .title{padding:0 30rpx;font-size:34rpx;color:#282828;font-weight:bold;margin:45rpx 0 23rpx 0;line-height:1.5}.newsDetail .list{margin:0 30rpx;border-bottom:1px solid #eee;padding-bottom:25rpx}.newsDetail .list .label{font-size:24rpx;height:38rpx;-webkit-border-radius:3rpx;border-radius:3rpx;text-align:center;line-height:36rpx;padding:0 10rpx;max-width:190rpx;width:unset}.newsDetail .list .item{margin-left:27rpx;font-size:24rpx;color:#999}.newsDetail .list .item .iconfont{font-size:28rpx;margin-right:10rpx}.newsDetail .list .item .iconfont.icon-shenhezhong{font-size:26rpx}.newsDetail .conter{padding:0 30rpx;font-size:30rpx;color:#333;line-height:1.8;padding-top:35rpx}.newsDetail .conter image{width:100%;display:block}.commission-details .promoterHeader .headerCon .money{font-size:36rpx}.commission-details .promoterHeader .headerCon .money .num{font-family:'GuildfordProBook 5'}.register{background-image:-webkit-gradient(linear, left top, left bottom, from(#eb3729), to(#eb3729));background-image:-webkit-linear-gradient(top, #eb3729 0%, #eb3729 100%);background-image:-o-linear-gradient(top, #eb3729 0%, #eb3729 100%);background-image:linear-gradient(to bottom, #eb3729 0%, #eb3729 100%);background-image:-moz-linear-gradient(to bottom, #eb3729 0%, #eb3729 100%);width:100%;height:100vh}.register .shading{background-image:url("https://h5.yixiang.co/static/images/registerw.png");background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:286rpx;padding-top:70rpx}.register .shading .pictrue{width:172rpx;height:172rpx;-webkit-border-radius:50%;border-radius:50%;background-color:rgba(255,255,255,0.8);margin:0 auto}.register .shading .pictrue image{width:164rpx;height:164rpx;-webkit-border-radius:50%;border-radius:50%;display:block}.register .whiteBg{width:620rpx;-webkit-border-radius:16rpx;border-radius:16rpx;background-color:#fff;margin:30rpx auto 0 auto;padding:45rpx 30rpx 0 30rpx}.register .whiteBg .title{font-size:36rpx;color:#282828;text-align:center;font-weight:bold}.register .whiteBg .title .item~.item{margin-left:85rpx}.register .whiteBg .title .item{color:#999999;border-bottom:5rpx solid #fff;padding-bottom:10rpx}.register .whiteBg .title .item.on{color:#282828;border-bottom-color:#f35749}.register .whiteBg .list .item{border-bottom:1px solid #ededed;padding:47rpx 0 13rpx 0;position:relative}.register .whiteBg .list .item .name{font-size:26rpx;color:#2d3342;margin-bottom:27rpx;text-align:left}.register .whiteBg .list .item .icon{font-size:35rpx;margin-right:32rpx}.register .whiteBg .list .item input{font-size:33rpx;width:490rpx}.register .whiteBg .list .item input::-webkit-input-placeholder{color:#cccccc}.register .whiteBg .list .item input::-moz-placeholder{color:#cccccc}.register .whiteBg .list .item input:-ms-input-placeholder{color:#cccccc}.register .whiteBg .list .item input::-ms-input-placeholder{color:#cccccc}.register .whiteBg .list .item input::placeholder{color:#cccccc}.register .whiteBg .list .item .codeIput{width:250rpx}.register .whiteBg .list .item .code{position:absolute;width:150rpx;height:50rpx;background-color:#f35446;-webkit-border-radius:30rpx;border-radius:30rpx;color:#fff;line-height:50rpx;text-align:center;bottom:17rpx;right:0;font-size:25rpx}.register .whiteBg .list .item .code.on{background-color:#bbbbbb}.register .whiteBg .list .forgetPwd{text-align:right;font-size:28rpx;color:#cccccc;margin-top:20rpx}.register .whiteBg .list .forgetPwd .iconfont{font-size:30rpx;margin-right:10rpx;vertical-align:middle}.register .whiteBg .logon{font-size:34rpx;color:#fff;font-weight:bold;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;background:-webkit-gradient(linear, left top, right top, from(#f35447), to(#ff8e3c));background:-webkit-linear-gradient(left, #f35447 0%, #ff8e3c 100%);background:-o-linear-gradient(left, #f35447 0%, #ff8e3c 100%);background:linear-gradient(to right, #f35447 0%, #ff8e3c 100%);background:-moz-linear-gradient(to right, #f35447 0%, #ff8e3c 100%);text-align:center;line-height:86rpx;margin-top:47rpx}.register .whiteBg .tip{height:110rpx;text-align:center;line-height:105rpx;font-size:30rpx;color:#cccccc}.register .bottom{background-image:url("https://h5.yixiang.co/static/images/registerB.png");background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:620rpx;height:36rpx;margin:0 auto}.productSort{background:#fff}.productSort .header{width:100%;height:96rpx;background-color:#fff;position:fixed;left:0;right:0;top:0;z-index:9;border-bottom:1px solid #f5f5f5}.productSort .header .input{width:700rpx;height:60rpx;background-color:#f5f5f5;-webkit-border-radius:50rpx;border-radius:50rpx;padding:0 25rpx}.productSort .header .input .iconfont{font-size:35rpx;color:#555}.productSort .header .input input{font-size:26rpx;height:100%;width:597rpx}.productSort .header .input input::-webkit-input-placeholder{color:#999}.productSort .header .input input::-moz-placeholder{color:#999}.productSort .header .input input:-ms-input-placeholder{color:#999}.productSort .header .input input::-ms-input-placeholder{color:#999}.productSort .header .input input::placeholder{color:#999}.productSort .aside{position:fixed;width:180rpx;left:0;top:96rpx;bottom:100rpx;background-color:#f7f7f7;overflow-y:auto;overflow-x:hidden;overflow-scrolling:touch}.productSort .aside .item{height:80rpx;width:100%;font-size:26rpx;color:#424242}.productSort .aside .item.on{background-color:#fff;border-left:4rpx solid #eb3729;width:100%;text-align:center;color:#eb3729;font-weight:bold}.productSort .conter{margin-left:180rpx;padding:0 14rpx;margin-top:96rpx}.productSort .conter .listw{padding-top:20rpx}.productSort .conter .listw .title{height:90rpx}.productSort .conter .listw .title .line{width:100rpx;height:2rpx;background-color:#999}.productSort .conter .listw .title .name{font-size:28rpx;color:#333;margin:0 30rpx;font-weight:bold}.productSort .conter .list{-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap}.productSort .conter .list .item{width:177rpx;margin-top:26rpx}.productSort .conter .list .item .picture{width:120rpx;height:120rpx;-webkit-border-radius:50%;border-radius:50%}.productSort .conter .list .item .picture image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.productSort .conter .list .item .name{font-size:24rpx;color:#333;height:56rpx;line-height:56rpx;width:120rpx;text-align:center}.home{position:fixed;top:780rpx;color:white;text-align:center;z-index:33;right:10rpx}.home .homeCon{overflow:hidden;width:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);height:0;color:#e93323}.home .homeCon.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);height:300rpx;padding:34rpx 0;margin-bottom:20rpx}.home .homeCon .iconfont{font-size:48rpx;color:#fff;display:inline-block;height:90rpx;margin:0 auto}.home .pictrue{width:86rpx;height:86rpx;-webkit-border-radius:50%;border-radius:50%}.home .pictrue .image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.pos-order-goods{padding:0 30rpx;background-color:#fff}.pos-order-goods .goods{height:185rpx}.pos-order-goods .goods~.goods{border-top:1px dashed #e5e5e5}.pos-order-goods .goods .picTxt{width:515rpx}.pos-order-goods .goods .picTxt .pictrue{width:130rpx;height:130rpx}.pos-order-goods .goods .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.pos-order-goods .goods .picTxt .text{width:365rpx;height:130rpx}.pos-order-goods .goods .picTxt .text .info{font-size:28rpx;color:#282828}.pos-order-goods .goods .picTxt .text .attr{font-size:20rpx;color:#999}.pos-order-goods .goods .money{width:164rpx;text-align:right;font-size:28rpx}.pos-order-goods .goods .money .x-money{color:#282828}.pos-order-goods .goods .money .num{color:#ff9600;margin:5rpx 0}.pos-order-goods .goods .money .y-money{color:#999;text-decoration:line-through}.public-total{font-size:28rpx;color:#282828;border-top:1px solid #eee;height:92rpx;line-height:92rpx;text-align:right;padding:0 30rpx;background-color:#fff}.public-total .money{color:#ff4c3c}.priceChange{position:fixed;width:580rpx;height:670rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;top:50%;left:50%;margin-left:-290rpx;margin-top:-335rpx;z-index:99;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);opacity:0}.priceChange.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.priceChange .priceTitle{background:url("https://h5.yixiang.co/static/images/pricetitle.jpg") no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:160rpx;-webkit-border-radius:10rpx 10rpx 0 0;border-radius:10rpx 10rpx 0 0;text-align:center;font-size:40rpx;color:#fff;line-height:160rpx;position:relative}.priceChange .priceTitle .iconfont{position:absolute;font-size:40rpx;right:26rpx;top:23rpx;width:40rpx;height:40rpx;line-height:40rpx}.priceChange .listChange{padding:0 40rpx}.priceChange .listChange .item{height:103rpx;border-bottom:1px solid #e3e3e3;font-size:32rpx;color:#333}.priceChange .listChange .item .money{color:#666;width:300rpx;text-align:right}.priceChange .listChange .item .money .iconfont{font-size:32rpx;margin-left:20rpx}.priceChange .listChange .item .money input{width:100%;height:100%;text-align:right;color:#ccc}.priceChange .listChange .item .money input.on{color:#666}.priceChange .modify{font-size:32rpx;color:#fff;width:490rpx;height:90rpx;text-align:center;line-height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;background-color:#2291f8;margin:53rpx auto 0 auto}.priceChange .modify1{font-size:32rpx;color:#312b2b;width:490rpx;height:90rpx;text-align:center;line-height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;background-color:#eee;margin:30rpx auto 0 auto}.public-wrapper .title{font-size:30rpx;color:#282828;padding:0 30rpx;margin-bottom:20rpx}.public-wrapper .title .iconfont{color:#2291f8;font-size:40rpx;margin-right:13rpx;vertical-align:middle}.public-wrapper{margin:18rpx auto 0 auto;width:690rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;padding-top:25rpx}.public-wrapper .nav{padding:0 30rpx;height:70rpx;line-height:70rpx;font-size:24rpx;color:#999}.public-wrapper .data{width:210rpx;text-align:left}.public-wrapper .browse{width:192rpx;text-align:right}.public-wrapper .turnover{width:227rpx;text-align:right}.public-wrapper .conter{padding:0 30rpx}.public-wrapper .conter .item{border-bottom:1px solid #f7f7f7;height:70rpx;font-size:24rpx}.public-wrapper .conter .item .turnover{color:#d84242}.pos-order-list .nav{width:100%;height:96rpx;background-color:#fff;font-size:30rpx;color:#282828;position:fixed;top:0;left:0}.pos-order-list .nav .item.on{color:#2291f8}.pos-order-list .list{margin-top:120rpx}.pos-order-list .list .item{background-color:#fff;width:100%}.pos-order-list .list .item~.item{margin-top:24rpx}.pos-order-list .list .item .order-num{border-bottom:1px solid #eee;font-size:26rpx;font-weight:bold;color:#282828;padding:20rpx 30rpx;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.pos-order-list .list .item .order-num .time{font-size:26rpx;font-weight:normal;color:#999;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.pos-order-list .list .item .operation{padding:20rpx 30rpx;margin-top:3rpx}.pos-order-list .list .item .operation .more{position:relative}.pos-order-list .list .item .operation .icon-gengduo{font-size:50rpx;color:#aaa}.pos-order-list .list .item .operation .order .arrow{width:0;height:0;border-left:11rpx solid transparent;border-right:11rpx solid transparent;border-top:20rpx solid #e5e5e5;position:absolute;left:15rpx;bottom:-18rpx}.pos-order-list .list .item .operation .order .arrow:before{content:'';width:0;height:0;border-left:7rpx solid transparent;border-right:7rpx solid transparent;border-top:20rpx solid #fff;position:absolute;left:-7rpx;bottom:0}.pos-order-list .list .item .operation .order{width:200rpx;background-color:#fff;border:1px solid #eee;-webkit-border-radius:10rpx;border-radius:10rpx;position:absolute;top:-100rpx;z-index:9}.pos-order-list .list .item .operation .order .items{height:77rpx;line-height:77rpx;text-align:center}.pos-order-list .list .item .operation .order .items~.items{border-top:1px solid #f5f5f5}.pos-order-list .list .item .operation .bnt{font-size:28rpx;color:#5c5c5c;width:170rpx;height:60rpx;-webkit-border-radius:30rpx;border-radius:30rpx;border:1px solid #bbb;text-align:center;line-height:60rpx}.pos-order-list .list .item .operation .bnt~.bnt{margin-left:14rpx}.pos-order-details .header{background:-webkit-gradient(linear, left top, right top, from(#2291f8), to(#1cd1dc));background:-webkit-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:-o-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:linear-gradient(to right, #2291f8 0%, #1cd1dc 100%);background:-moz-linear-gradient(to right, #2291f8 0%, #1cd1dc 100%)}.pos-order-details .header .state{font-size:36rpx;color:#fff}.pos-order-details .header .data{margin-left:35rpx;font-size:28rpx}.pos-order-details .header .data .order-num{font-size:30rpx;margin-bottom:8rpx}.pos-order-details .remarks{width:100%;height:86rpx;background-color:#fff;padding:0 30rpx}.pos-order-details .remarks .iconfont{font-size:40rpx;color:#2a7efb}.pos-order-details .remarks input{width:630rpx;height:100%;font-size:30rpx}.pos-order-details .remarks input::-webkit-input-placeholder{color:#666}.pos-order-details .remarks input::-moz-placeholder{color:#666}.pos-order-details .remarks input:-ms-input-placeholder{color:#666}.pos-order-details .remarks input::-ms-input-placeholder{color:#666}.pos-order-details .remarks input::placeholder{color:#666}.pos-order-details .orderingUser{font-size:26rpx;color:#282828;padding:0 30rpx;height:0rpx;background-color:#fff;margin-top:16rpx;border-bottom:1px solid #f5f5f5}.pos-order-details .orderingUser .iconfont{font-size:40rpx;color:#2a7efb;margin-right:15rpx}.pos-order-details .address{margin-top:0}.pos-order-details .pos-order-goods{margin-top:17rpx}.pos-order-details .footer .more{font-size:27rpx;color:#aaa;width:100rpx;height:64rpx;text-align:center;line-height:64rpx;margin-right:25rpx;position:relative}.pos-order-details .footer .delivery{background:-webkit-gradient(linear, left top, right top, from(#2291f8), to(#1cd1dc));background:-webkit-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:-o-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:linear-gradient(to right, #2291f8 0%, #1cd1dc 100%);background:-moz-linear-gradient(to right, #2291f8 0%, #1cd1dc 100%)}.pos-order-details .footer .more .order .arrow{width:0;height:0;border-left:11rpx solid transparent;border-right:11rpx solid transparent;border-top:20rpx solid #e5e5e5;position:absolute;left:15rpx;bottom:-18rpx}.pos-order-details .footer .more .order .arrow:before{content:'';width:0;height:0;border-left:9rpx solid transparent;border-right:9rpx solid transparent;border-top:19rpx solid #fff;position:absolute;left:-10rpx;bottom:0}.pos-order-details .footer .more .order{width:200rpx;background-color:#fff;border:1px solid #eee;-webkit-border-radius:10rpx;border-radius:10rpx;position:absolute;top:-200rpx;z-index:9}.pos-order-details .footer .more .order .item{height:77rpx;line-height:77rpx}.pos-order-details .footer .more .order .item~.item{border-top:1px solid #f5f5f5}.pos-order-details .footer .more .moreName{width:100%;height:100%}.deliver-goods header{width:100%;background-color:#fff;margin-top:10rpx}.deliver-goods header .order-num{padding:0 30rpx;border-bottom:1px solid #f5f5f5;height:67rpx}.deliver-goods header .order-num .num{width:430rpx;font-size:26rpx;color:#282828;position:relative}.deliver-goods header .order-num .num:after{position:absolute;content:'';width:1px;height:30rpx;background-color:#ddd;top:50%;margin-top:-15rpx;right:0}.deliver-goods header .order-num .name{width:260rpx;font-size:26rpx;color:#282828;text-align:center}.deliver-goods header .order-num .name .iconfont{font-size:35rpx;color:#477ef3;vertical-align:middle;margin-right:10rpx}.deliver-goods header .address{font-size:26rpx;color:#868686;background-color:#fff;padding:30rpx}.deliver-goods header .address .name{font-size:30rpx;color:#282828;margin-bottom:10rpx}.deliver-goods header .address .name .phone{margin-left:40rpx}.deliver-goods header .line{width:100%;height:3rpx}.deliver-goods header .line image{width:100%;height:100%;display:block}.deliver-goods .wrapper{width:100%;background-color:#fff}.deliver-goods .wrapper .item{border-bottom:1px solid #f0f0f0;padding:0 30rpx;height:96rpx;font-size:32rpx;color:#282828;position:relative}.deliver-goods .wrapper .item .mode{width:460rpx;height:100%;text-align:right}.deliver-goods .wrapper .item .mode .iconfont{font-size:30rpx;margin-left:13rpx}.deliver-goods .wrapper .item .mode .goods~.goods{margin-left:30rpx}.deliver-goods .wrapper .item .mode .goods{color:#bbb}.deliver-goods .wrapper .item .mode .goods.on{color:#477ef3}.deliver-goods .wrapper .item .icon-up{position:absolute;font-size:35rpx;color:#2c2c2c;right:30rpx}.deliver-goods .wrapper .item select{direction:rtl;padding-right:60rpx;position:relative;z-index:2}.deliver-goods .wrapper .item input::-webkit-input-placeholder{color:#bbb}.deliver-goods .wrapper .item input::-moz-placeholder{color:#bbb}.deliver-goods .wrapper .item input:-ms-input-placeholder{color:#bbb}.deliver-goods .wrapper .item input::-ms-input-placeholder{color:#bbb}.deliver-goods .wrapper .item input::placeholder{color:#bbb}.deliver-goods .confirm{font-size:32rpx;color:#fff;width:100%;height:100rpx;background-color:#477ef3;text-align:center;line-height:100rpx;position:fixed;bottom:0}.order-index .header{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:302rpx;padding:45rpx 30rpx 0 30rpx;position:relative}.order-index .image{position:absolute;width:100%;left:0;right:0;top:0;z-index:0}.order-index .header:after{position:absolute;left:0;right:0;bottom:-98rpx;z-index:-1;content:'';height:100rpx;width:100%;-webkit-border-radius:0 0 50% 50%;border-radius:0 0 50% 50%}.order-index .header .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:24rpx;color:#fff}.order-index .header .item .num{font-size:40rpx;margin-bottom:7rpx}.order-index .wrapper{position:relative;width:690rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin:-115rpx auto 0 auto;padding-top:25rpx;z-index:99}.order-index .wrapper .title{font-size:30rpx;color:#282828;padding:0 30rpx;margin-bottom:40rpx}.order-index .wrapper .title .iconfont{color:#2291f8;font-size:40rpx;margin-right:13rpx;vertical-align:middle}.order-index .wrapper .list .item{width:33.33%;text-align:center;font-size:24rpx;color:#999;margin-bottom:45rpx}.order-index .wrapper .list .item .num{font-size:40rpx;color:#333}.statistical-page .navs{width:100%;height:96rpx;background-color:#fff;overflow:hidden;line-height:96rpx;position:fixed;top:0;left:0;z-index:9}.statistical-page .navs .list{overflow-y:hidden;overflow-x:auto;white-space:nowrap;width:100%}.statistical-page .navs .item{font-size:32rpx;color:#282828;margin-left:78rpx;display:inline-block}.statistical-page .navs .item.on{color:#2291f8}.statistical-page .navs .item .iconfont{font-size:25rpx;margin-left:13rpx}.statistical-page .wrapper{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin:119rpx auto 0 auto;padding:30rpx 60rpx}.statistical-page .wrapper .title{font-size:30rpx;color:#999;text-align:center}.statistical-page .wrapper .money{font-size:72rpx;color:#fba02a;text-align:center;margin-top:10rpx}.statistical-page .wrapper .increase{font-size:28rpx;color:#999;margin-top:20rpx}.statistical-page .wrapper .increase .red{color:#ff6969}.statistical-page .wrapper .increase .green{color:#1abb1d}.statistical-page .wrapper .increase .iconfont{font-size:23rpx;margin-left:15rpx}.statistical-page .chart{width:690rpx;height:480rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin:23rpx auto 0 auto;padding:25rpx 22rpx 0 22rpx}.statistical-page .chart .company{font-size:26rpx;color:#999}.statistical-page .mc-body{padding-bottom:0}.statistical-page .mc-body tr{background-color:#edf8fe;border-top:1px solid #fff;width:100%}.statistical-page .mc-head-box view{font-size:14px}.statistical-page .mc-range-mode .selected .mc-range-bg{background-color:#a0dcf9}.yd-confirm{background-color:#fff;font-size:unset;width:540rpx;height:250rpx;-webkit-border-radius:40rpx;border-radius:40rpx}.yd-confirm-hd{text-align:center}.yd-confirm-title{color:#030303;font-weight:bold;font-size:36rpx}.yd-confirm-bd{text-align:center;font-size:28rpx;color:#333333}.yd-confirm-ft{line-height:90rpx;margin-top:14px;border-top:1rpx solid #eee}.yd-confirm-ft>a{color:#e93323}.yd-confirm-ft>a.primary{border-left:1rpx solid #eee;color:#e93323}.ChangePassword .phone{font-size:32rpx;font-weight:bold;text-align:center;margin-top:55rpx}.ChangePassword .list{width:580rpx;margin:53rpx auto 0 auto}.ChangePassword .list .item{width:100%;height:110rpx;border-bottom:2rpx solid #f0f0f0}.ChangePassword .list .item input{width:100%;height:100%;font-size:32rpx}.ChangePassword .list .item input::-webkit-input-placeholder{color:#b9b9bc}.ChangePassword .list .item input::-moz-placeholder{color:#b9b9bc}.ChangePassword .list .item input:-ms-input-placeholder{color:#b9b9bc}.ChangePassword .list .item input::-ms-input-placeholder{color:#b9b9bc}.ChangePassword .list .item input::placeholder{color:#b9b9bc}.ChangePassword .list .item input.codeIput{width:340rpx}.ChangePassword .list .item .code{font-size:32rpx}.ChangePassword .list .item .code.on{color:#b9b9bc !important}.ChangePassword .confirmBnt{font-size:32rpx;width:580rpx;height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;color:#fff;margin:92rpx auto 0 auto;text-align:center;line-height:90rpx}.posterCanvasWarp{position:relative;width:0;height:0;overflow:hidden}.posterCanvasWarp .posterCanvas{position:absolute;left:0;top:0;width:747px !important;height:1326px !important}.text .name .icon-jingpintuijian,.text .name .icon-xinpin{color:#00f !important}.text .name .icon-shoucang{color:#ea3526 !important}rich-text{width:100%;display:block}rich-text img,rich-text image{display:block;width:100%} +view,scroll-view,swiper,button,input,textarea,label,navigator,image{-webkit-box-sizing:border-box;box-sizing:border-box}page{background:#f5f5f5;height:100%}.newsList .newsSwitch .van-hairline--top-bottom::after{border:0}.newsList .newsSwitch .van-tab{font-size:32rpx;padding:0;-webkit-flex-basis:unset !important;-ms-flex-preferred-size:unset !important;flex-basis:unset !important;margin-right:46rpx}.newsList .newsSwitch .van-tabs__wrap{padding:0 30rpx}.newsList .newsSwitch.van-tabs--line{padding-top:90rpx}#footer{position:fixed;width:100%;height:100rpx;bottom:0;left:0;background-color:#fff;border-top:1px solid #eee;z-index:9999}#footer.iphonex-footer{height:100rpx;padding-bottom:68rpx}.footer-bg{height:100rpx}.iphonex-footer-bg{height:168rpx}#footer .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:20rpx;color:#282828}#footer .item.on{color:#eb3729}#footer .item .iconfont{font-size:45rpx;height:55rpx;line-height:55rpx}.goodList .item{position:relative;padding-left:30rpx;background-color:#fff}.goodList .item .pictrue{width:180rpx;height:180rpx;position:relative}.goodList .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodList .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodList .item .pictrue .numPic{position:absolute;left:7rpx;top:7rpx;width:50rpx;height:50rpx;-webkit-border-radius:50%;border-radius:50%}.goodList .item .underline{padding:30rpx 30rpx 30rpx 0;border-bottom:1px solid #f5f5f5}.goodList .item:nth-last-child(1) .underline{border-bottom:0}.goodList .item .text{font-size:30rpx;color:#222;width:489rpx;text-align:left}.goodList .item .text .money .num{font-size:34rpx}.goodList .item .text .vip-money{font-size:24rpx;color:#282828;font-weight:bold;margin-top:10rpx}.goodList .item .text .vip-money .vip{margin-right:22rpx;text-decoration:line-through}.goodList .item .text .vip-money .image{width:46rpx;height:21rpx;margin-left:5rpx}.goodList .item .text .vip-money .num{font-size:22rpx;color:#aaa;font-weight:normal;margin:-2rpx 0 0 0}.goodList .item .iconfont{position:absolute;right:30rpx;width:50rpx;height:50rpx;-webkit-border-radius:50%;border-radius:50%;font-size:30rpx;bottom:38rpx}.promotionGood{padding:0 30rpx;background-color:#fff}.promotionGood .item{border-bottom:1px solid #eee;height:250rpx}.promotionGood .item .pictrue{width:188rpx;height:188rpx}.promotionGood .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:8rpx;border-radius:8rpx}.promotionGood .item .text{font-size:24rpx;color:#999;width:472rpx;text-align:left}.promotionGood .item .text .name{font-size:30rpx;color:#333}.promotionGood .item .text .sp-money{margin:34rpx 0 20rpx 0}.promotionGood .item .text .sp-money .moneyCon{height:36rpx;line-height:46rpx;font-size:26rpx;color:#ea3526;-webkit-border-radius:24rpx 3rpx 24rpx 3rpx;border-radius:24rpx 3rpx 24rpx 3rpx}.promotionGood .item .text .sp-money .moneyCon .num{font-size:24rpx}.promotionGood .item .text .money{text-decoration:line-through}.recommend{background-color:#fff}.recommend .title{height:135rpx;font-size:28rpx;color:#282828}.recommend .title .name{margin:0 28rpx}.recommend .title .iconfont{font-size:170rpx;color:#454545;height:50rpx;line-height:50rpx}.recommend .title .iconfont.lefticon{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.recommend .recommendList{padding:0 30rpx}.recommend .recommendList .item{width:335rpx;margin-bottom:30rpx}.recommend .recommendList .item .pictrue{width:100%;height:335rpx}.recommend .recommendList .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.recommend .recommendList .item .name{font-size:28rpx;color:#282828;margin-top:20rpx}.recommend .recommendList .item .money{font-size:20rpx;margin-top:3rpx}.recommend .recommendList .item .money .num{font-size:28rpx}.noCommodity{padding-top:75rpx}.noCommodity .noPictrue{width:414rpx;height:336rpx;margin:0 auto 30rpx auto}.noCommodity .noPictrue .image{width:100%;height:100%}.product-bg{height:750rpx}.product-bg swiper{height:750rpx}.product-bg .slide-image{width:100%;height:100%}.product-bg .pages{position:absolute;background-color:#fff;height:34rpx;padding:0 10rpx;-webkit-border-radius:3rpx;border-radius:3rpx;right:30rpx;bottom:30rpx;line-height:34rpx;font-size:24rpx;color:#050505;z-index:9}.evaluateWtapper .evaluateItem{background-color:#fff;padding-bottom:25rpx}.evaluateWtapper .evaluateItem~.evaluateItem{border-top:1px solid #f5f5f5}.evaluateWtapper .evaluateItem .pic-text{font-size:26rpx;color:#282828;height:95rpx;padding:0 30rpx}.evaluateWtapper .evaluateItem .pic-text .pictrue{width:56rpx;height:56rpx;margin-right:20rpx}.evaluateWtapper .evaluateItem .pic-text .pictrue .image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.evaluateWtapper .evaluateItem .pic-text .name{max-width:450rpx;margin-right:15rpx}.evaluateWtapper .evaluateItem .time{font-size:24rpx;color:#82848f;padding:0 30rpx}.evaluateWtapper .evaluateItem .evaluate-infor{font-size:28rpx;color:#282828;margin-top:19rpx;padding:0 30rpx}.evaluateWtapper .evaluateItem .imgList{padding:0 30rpx 0 15rpx;margin-top:25rpx}.evaluateWtapper .evaluateItem .imgList .pictrue{width:156rpx;height:156rpx;margin:0 0 15rpx 15rpx}.evaluateWtapper .evaluateItem .imgList .pictrue .image{width:100%;height:100%}.evaluateWtapper .evaluateItem .reply{font-size:26rpx;color:#454545;background-color:#f7f7f7;-webkit-border-radius:5rpx;border-radius:5rpx;margin:20rpx 30rpx 0 30rpx;padding:30rpx;position:relative}.evaluateWtapper .evaluateItem .reply::before{content:"";width:0;height:0;border-left:10rpx solid transparent;border-right:10rpx solid transparent;border-bottom:20rpx solid #f7f7f7;position:absolute;top:-20rpx;left:100rpx}.coupon-list{padding:0 30rpx;margin-top:25rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.coupon-list .item{width:100%;height:170rpx;margin-bottom:16rpx}.coupon-list .item .money{background-image:url('https://wx.yixiang.co/static/images/coupon1.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:240rpx;height:100%;color:#fff;font-size:36rpx;font-weight:bold;text-align:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.coupon-list .item .money.moneyGray{background-image:url('https://wx.yixiang.co/static/images/coupon2.png')}.coupon-list .item .money .num{font-size:60rpx}.coupon-list .item .text{width:450rpx;padding:0 17rpx 0 24rpx;background-color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box}.coupon-list .item .text .condition{font-size:30rpx;color:#282828;height:93rpx;line-height:93rpx;border-bottom:1px solid #f0f0f0}.coupon-list .item .text .data{font-size:20rpx;color:#999;height:76rpx}.coupon-list .item .text .data .bnt{width:136rpx;height:44rpx;-webkit-border-radius:22rpx;border-radius:22rpx;font-size:22rpx;color:#fff;text-align:center;line-height:44rpx}.coupon-list .item .text .data .bnt.gray{background-color:#ccc}.condition .line-title{width:90rpx;height:30rpx;line-height:30rpx;padding:0 10rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff7f7;border:1rpx solid #e83323;opacity:1;-webkit-border-radius:22rpx;border-radius:22rpx;font-size:20rpx !important;color:#e83323;margin-right:12rpx}.coupon-list .pic-num{color:#ffffff !important;font-size:24rpx !important}.coupon-list-window{position:fixed;bottom:0;left:0;width:100%;background-color:#f5f5f5;-webkit-border-radius:16rpx 16rpx 0 0;border-radius:16rpx 16rpx 0 0;z-index:111;transition:all .3s cubic-bezier(.25, .5, .5, .9);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-moz-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transform:translate3d(0, 100%, 0);-webkit-transform:translate3d(0, 100%, 0);-ms-transform:translate3d(0, 100%, 0);-moz-transform:translate3d(0, 100%, 0);-o-transform:translate3d(0, 100%, 0)}.coupon-list-window.on{transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0)}.coupon-list-window .title{height:124rpx;width:100%;text-align:center;line-height:124rpx;font-size:32rpx;font-weight:bold;position:relative;color:#333}.coupon-list-window .title .iconfont{position:absolute;right:30rpx;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);font-size:35rpx;color:#8a8a8a;font-weight:normal}.coupon-list-window .coupon-list{margin:0 0 50rpx 0;height:550rpx;overflow:auto}.coupon-list-window .pictrue{width:414rpx;height:336rpx;margin:0 auto 50rpx auto}.coupon-list-window .pictrue .image{width:100%;height:100%}.product-window{position:fixed;bottom:0;width:100%;left:0;background-color:#fff;z-index:88;-webkit-border-radius:16rpx 16rpx 0 0;border-radius:16rpx 16rpx 0 0;padding-bottom:140rpx;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.product-window.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.product-window .textpic{padding:0 130rpx 0 30rpx;margin-top:29rpx;position:relative}.product-window .textpic .pictrue{width:150rpx;height:150rpx}.product-window .textpic .pictrue .image{width:100%;height:100%;-webkit-border-radius:10rpx;border-radius:10rpx}.product-window .textpic .text{width:410rpx;font-size:32rpx;color:#202020}.product-window .textpic .text .money{font-size:24rpx;margin-top:40rpx}.product-window .textpic .text .money .num{font-size:36rpx}.product-window .textpic .text .money .stock{color:#999;margin-left:18rpx}.product-window .textpic .iconfont{position:absolute;right:30rpx;top:-5rpx;font-size:35rpx;color:#8a8a8a}.product-window .productWinList{max-height:395rpx;overflow:auto;margin-top:36rpx}.product-window .productWinList .item~.item{margin-top:36rpx}.product-window .productWinList .item .title{font-size:30rpx;color:#999;padding:0 30rpx}.product-window .productWinList .item .listn{padding:0 30rpx 0 16rpx}.product-window .productWinList .item .listn .itemn{border:1px solid #bbb;font-size:26rpx;color:#282828;padding:7rpx 33rpx;-webkit-border-radius:6rpx;border-radius:6rpx;margin:14rpx 0 0 14rpx}.product-window .productWinList .item .listn .itemn.on{color:#fff;background-color:#eb3729;border-color:#eb3729}.product-window .cart{margin-top:36rpx;padding:0 30rpx}.product-window .cart .title{font-size:30rpx;color:#999}.product-window .cart .carnum{height:54rpx;margin-top:24rpx}.product-window .cart .carnum .item{border:1px solid #a4a4a4;width:84rpx;text-align:center;height:100%;line-height:54rpx;color:#a4a4a4;font-size:45rpx}.product-window .cart .carnum .reduce{border-right:0;-webkit-border-radius:6rpx 0 0 6rpx;border-radius:6rpx 0 0 6rpx;line-height:48rpx}.product-window .cart .carnum .reduce.on{border-color:#e3e3e3;color:#dedede}.product-window .cart .carnum .plus{border-left:0;-webkit-border-radius:0 6rpx 6rpx 0;border-radius:0 6rpx 6rpx 0;line-height:46rpx}.product-window .cart .carnum .plus.on{border-color:#e3e3e3;color:#dedede}.product-window .cart .carnum .num{color:#282828;font-size:28rpx}.sharing-packets{position:fixed;left:30rpx;bottom:150rpx;z-index:5;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.sharing-packets.on{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);opacity:0}.sharing-packets .iconfont{width:44rpx;height:44rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#999;font-size:20rpx;color:#fff;margin:0 auto;padding-left:1rpx}.sharing-packets .line{width:2rpx;height:40rpx;background-color:#999;margin:0 auto}.sharing-packets .sharing-con{width:187rpx;height:210rpx;position:relative}.sharing-packets .sharing-con .image{width:100%;height:100%}.sharing-packets .sharing-con .text{position:absolute;top:20rpx;font-size:20rpx;width:100%;text-align:center}.sharing-packets .sharing-con .text .money{font-size:32rpx;font-weight:bold}.sharing-packets .sharing-con .text .money .label{font-size:20rpx}.sharing-packets .sharing-con .text .tip{font-size:18rpx;color:#999}.sharing-packets .sharing-con .text .shareBut{font-size:22rpx;color:#fff;margin-top:27rpx;height:50rpx;line-height:50rpx}.orderGoods{background-color:#fff;margin-top:12rpx}.orderGoods .total{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:86rpx;padding:0 30rpx;border-bottom:1rpx solid #eee;font-size:30rpx;color:#282828;line-height:86rpx}.goodWrapper .item{margin-left:30rpx;padding-right:30rpx;border-bottom:2rpx solid #f0f0f0;height:180rpx}.goodWrapper .item .pictrue{width:130rpx;height:130rpx}.goodWrapper .item .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodWrapper .item .text{width:537rpx;position:relative}.goodWrapper .item .text .name{font-size:28rpx;color:#282828;width:453rpx}.goodWrapper .item .text .num{font-size:26rpx;color:#868686}.goodWrapper .item .text .attr{font-size:20rpx;color:#868686;margin-top:7rpx}.goodWrapper .item .text .money{font-size:26rpx;margin-top:17rpx}.goodWrapper .item .text .evaluate{position:absolute;width:114rpx;height:46rpx;border:1px solid #e93323;color:#e93323;-webkit-border-radius:4rpx;border-radius:4rpx;text-align:center;line-height:46rpx;right:0;bottom:-10rpx}.goodWrapper .item .text .evaluate.userEvaluated{font-size:26rpx;color:#aaa;background-color:#f7f7f7;border-color:#f7f7f7}.address-window{background-color:#fff;position:fixed;bottom:0;left:0;width:100%;z-index:99;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.address-window.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.address-window .title{font-size:32rpx;font-weight:bold;text-align:center;height:123rpx;line-height:123rpx;position:relative;color:#333}.address-window .title .iconfont{position:absolute;right:30rpx;color:#8a8a8a;font-size:35rpx}.address-window .list{max-height:600rpx;overflow-y:auto;overflow-x:hidden}.address-window .list .item{margin-left:30rpx;padding-right:30rpx;border-bottom:1px solid #eee;height:129rpx;font-size:25rpx;color:#333}.address-window .list .item .iconfont{font-size:37rpx;color:#2c2c2c}.address-window .list .item .iconfont.icon-complete{font-size:30rpx;color:#fff}.address-window .list .item .addressTxt{width:560rpx}.address-window .list .item .addressTxt .name{font-size:28rpx;font-weight:bold;color:#282828;margin-bottom:4rpx}.address-window .list .item .addressTxt .name .phone{margin-left:18rpx}.address-window .addressBnt{font-size:30rpx;font-weight:bold;color:#fff;width:690rpx;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;text-align:center;line-height:86rpx;margin:85rpx auto}.address-window .pictrue{width:414rpx;height:336rpx;margin:80rpx auto}.address-window .pictrue .image{width:100%;height:100%}.swiper{height:282rpx}.swiper .slide-image{width:100%;height:100%}.swiper .swiper-pagination{text-align:right;padding-right:40rpx;bottom:10rpx;width:100%}.swiper .swiper-pagination-bullet{width:12rpx;height:12rpx;border:2rpx solid #fff;-webkit-border-radius:50%;border-radius:50%;background-color:rgba(0,0,0,0);opacity:1}.swiper .swiper-pagination-bullet~.swiper-pagination-bullet{margin-left:12rpx}.swiper .swiper-pagination-bullet-active{border-color:#e93323;background-color:#e93323}.goodsStyle{background-color:#fff;padding:22rpx 30rpx}.goodsStyle .pictrue{width:120rpx;height:120rpx}.goodsStyle .pictrue .image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.goodsStyle .text{width:545rpx;font-size:28rpx;color:#999}.goodsStyle .text .name{width:360rpx;color:#282828}.goodsStyle .text .money{text-align:right}.goodsStyle .text .money .num{margin-top:7rpx}.promoterHeader{width:100%;height:220rpx}.promoterHeader .headerCon{width:100%;height:100%;padding:0 88rpx 0 55rpx;font-size:28rpx;color:#fff;background-image:url('https://wx.yixiang.co/static/images/transparent.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%}.promoterHeader .headerCon .name{margin-bottom:2rpx}.promoterHeader .headerCon .num{font-size:50rpx}.promoterHeader .headerCon .iconfont{font-size:125rpx}.coupon-window{background-image:url('https://wx.yixiang.co/static/images/coupon-window.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:630rpx;height:649rpx;position:fixed;top:20%;z-index:99;left:50%;margin-left:-305rpx;-webkit-transform:translate3d(0, -200%, 0);transform:translate3d(0, -200%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.coupon-window.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.coupon-window .couponWinList{width:480rpx;margin:157rpx 0 0 60rpx;height:415rpx;overflow:auto}.coupon-window .couponWinList .item{width:100%;height:120rpx;background-color:#fff;position:relative;margin-bottom:17rpx}.coupon-window .couponWinList .item::after{content:'';position:absolute;width:18rpx;height:18rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#eb3729;left:25.5%;bottom:0;margin-bottom:-9rpx}.coupon-window .couponWinList .item::before{content:'';position:absolute;width:18rpx;height:18rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#eb3729;left:25.5%;top:0;margin-top:-9rpx}.coupon-window .couponWinList .item .money{width:130rpx;border-right:1px dashed #ddd;height:100%;text-align:center;line-height:120rpx;font-size:26rpx;font-weight:bold}.coupon-window .couponWinList .item .money .num{font-size:40rpx}.coupon-window .couponWinList .item .text{width:349rpx;font-size:22rpx;color:#999;padding:0 29rpx}.coupon-window .couponWinList .item .text .name{font-size:26rpx;color:#282828;font-weight:bold;margin-bottom:9rpx}.coupon-window .lid{background-image:url('https://wx.yixiang.co/static/images/coupon-window2.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:573rpx;height:224rpx;position:fixed;left:50%;top:20%;margin:424rpx 0 0 -296rpx}.coupon-window .lid .bnt{font-size:29rpx;width:440rpx;height:80rpx;-webkit-border-radius:40rpx;border-radius:40rpx;background-color:#f9f1d3;text-align:center;line-height:80rpx;font-weight:bold;margin:98rpx auto 0 auto}.coupon-window .lid .iconfont{color:#fff;font-size:60rpx;text-align:center;margin-top:87rpx}.index .header{height:98rpx;width:100%;padding:0 30rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.index .header .logo{width:127rpx;height:45rpx;margin-right:25rpx}.index .header .logo image{width:100%;height:100%;display:block}.index .header .search{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;height:64rpx;background-color:#f7f7f7;-webkit-border-radius:50rpx;border-radius:50rpx;padding:0 28rpx;font-size:28rpx;color:#bbb}.index .header .qr{width:51rpx;height:51rpx;font-size:34rpx;margin-left:16rpx;margin-right:16rpx}.index .header .qr image{width:51rpx;height:51rpx}.index .header .search .iconfont{font-size:34rpx;margin-right:16rpx}.index .banner{height:375rpx}.index .banner swiper{height:375rpx}.index .banner image{width:100%;height:375rpx}.index .banner .swiper-pagination{bottom:7rpx}.index .banner .swiper-pagination-bullet{width:20rpx;height:4rpx;-webkit-border-radius:3rpx;border-radius:3rpx;background-color:#fff;opacity:.6}.index .banner .swiper-pagination-bullet-active{opacity:1}.index .nav{padding-top:26rpx}.index .nav .item{width:25%;text-align:center;font-size:26rpx;margin-bottom:35rpx}.index .nav .item .pictrue{width:90rpx;height:90rpx;margin:0 auto 15rpx auto}.index .nav .item .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.index .news{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:77rpx;border-top:1px solid #f4f4f4;padding:0 30rpx;-webkit-box-shadow:0 10rpx 30rpx #f5f5f5;box-shadow:0 10rpx 30rpx #f5f5f5;-moz-box-shadow:0 10rpx 30rpx #f5f5f5;-o-box-shadow:0 10rpx 30rpx #f5f5f5;background:#fffbe8}.index .news .pictrue{width:26rpx;height:26rpx;border-right:1px solid #ddd;padding-right:23rpx;-webkit-box-sizing:content-box;box-sizing:content-box;-moz-box-sizing:content-box;margin-right:20rpx}.index .news .pictrue image{width:100%;height:100%;display:block}.index .news .new-banner{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;overflow:hidden;height:77rpx}.index .news .new-banner .swiper-wrapper{height:77rpx;width:100%}.index .news .new-banner .swiper-slide{height:77rpx;width:100%}.index .news .new-banner .swiper-slide .swiper-item{height:77rpx;width:100%}.index .news .new-banner .text{width:480rpx;height:77rpx}.index .news .new-banner .text .label{font-size:20rpx;color:#eb3729;width:68rpx;height:34rpx;-webkit-border-radius:20rpx;border-radius:20rpx;text-align:center;line-height:34rpx;border:2rpx solid #eb3729}.index .news .new-banner .text .newsTitle{width:397rpx;font-size:24rpx;color:#666}.index .news .new-banner .iconfont{font-size:28rpx;color:#888}.index .specialArea{padding:30rpx}.index .specialArea .assemble{width:260rpx;height:260rpx;position:relative}.index .specialArea .assemble image{width:100%;height:100%;-webkit-border-radius:5rpx;border-radius:5rpx}.index .specialArea .assemble .text{position:absolute;top:37rpx;left:22rpx}.index .specialArea .name{font-size:30rpx;color:#fff}.index .specialArea .infor{font-size:22rpx;color:rgba(255,255,255,0.8);margin-top:5rpx}.index .specialArea .list{height:260rpx;width:416rpx}.index .specialArea .item{width:100%;height:124rpx;position:relative}.index .specialArea .item image{width:100%;height:100%}.index .specialArea .item .text{position:absolute;top:23rpx;left:28rpx}.index .wrapper .title{border-top:1px solid #eee;padding-top:34rpx;margin:0 30rpx}.index .wrapper .title.no-border{border:0}.index .wrapper.hot+.wrapper{border-top:0}.index .wrapper .goodList{margin-bottom:34rpx}.index .wrapper .title .text{font-size:24rpx;color:#999;width:530rpx;text-align:left}.index .wrapper .title .text-center .name{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.index .wrapper .title .text .name{color:#282828;font-size:28rpx;font-weight:bold;margin-bottom:5rpx;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.index .wrapper .title .text .name .iconfont{margin-right:10rpx}.index .wrapper .title .text .name .new{position:absolute;top:2rpx;left:130rpx;font-size:16rpx;font-weight:bold}.index .wrapper .title .more{font-size:26rpx;color:#333}.index .wrapper .title .more .iconfont{margin-left:2rpx;font-size:26rpx}.index .wrapper .scroll-product{white-space:nowrap;margin-top:38rpx;padding:0 30rpx 37rpx 30rpx;overflow:hidden}.index .wrapper .scroll-product .swiper-slide{width:180rpx;display:inline-block;margin-right:19rpx;border-bottom:4rpx solid #47b479;-webkit-box-shadow:0 15rpx 15rpx -10rpx #eee;box-shadow:0 15rpx 15rpx -10rpx #eee;-moz-box-shadow:0 15rpx 15rpx -10rpx #eee;-o-box-shadow:0 15rpx 15rpx -10rpx #eee}.index .wrapper .scroll-product .swiper-slide:nth-of-type(3n){border-bottom:4rpx solid #ff6960}.index .wrapper .scroll-product .swiper-slide:nth-of-type(3n-1){border-bottom:4rpx solid #579afe}.index .wrapper .scroll-product .swiper-slide:nth-last-child(1){margin-right:0}.index .wrapper .scroll-product .swiper-slide .img-box{width:100%;height:180rpx}.index .wrapper .scroll-product .swiper-slide .img-box image{width:100%;height:100%;-webkit-border-radius:6rpx 6rpx 0 0;border-radius:6rpx 6rpx 0 0}.index .wrapper .scroll-product .swiper-slide .pro-info{font-size:24rpx;color:#282828;text-align:center;height:60rpx;line-height:60rpx;border:1px solid #f5f5f5;border-bottom:0;border-top:0;padding:0 10rpx}.index .wrapper .boutique{width:690rpx;height:290rpx;margin:28rpx auto 0 auto}.index .wrapper .boutique{width:690rpx;height:290rpx;margin:28rpx auto 0 auto}.index .wrapper .boutique image{width:100%;height:260rpx}.index .wrapper .boutique .swiper-pagination{bottom:-8rpx;width:100%}.index .wrapper .boutique .swiper-pagination-bullet{width:7rpx;height:7rpx;-webkit-border-radius:50%;border-radius:50%;background-color:#fc4141;opacity:.3}.index .wrapper .boutique .swiper-pagination-bullet~.swiper-pagination-bullet{margin-left:10rpx}.index .wrapper .boutique .swiper-pagination-bullet-active{width:20rpx;height:7rpx;-webkit-border-radius:3.5rpx;border-radius:3.5rpx;opacity:1}.index .hotList .hot-bg{width:100%;height:215rpx;background-image:url('https://wx.yixiang.co/static/images/index-bg.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;padding:0 30rpx;font-size:24rpx;color:#fff;margin-top:15rpx}.index .hotList .hot-bg .title{height:87rpx}.index .hotList .hot-bg .title .text{width:575rpx}.index .hotList .hot-bg .title .text .label{font-size:30rpx;font-weight:bold;margin-right:20rpx}.index .hotList .hot-bg .title .more{font-size:26rpx;color:#fff}.index .hotList .hot-bg .title .more .iconfont{font-size:25rpx;vertical-align:2rpx;margin-left:10rpx}.index .hotList .list{width:690rpx;height:330rpx;-webkit-border-radius:20rpx;border-radius:20rpx;background-color:#fff;margin:-128rpx auto 0 auto;padding:0 22rpx;-webkit-box-shadow:0 0 20rpx -10rpx #aaa;box-shadow:0 0 20rpx -10rpx #aaa;-moz-box-shadow:0 0 20rpx -10rpx #aaa;-o-box-shadow:0 0 20rpx -10rpx #aaa}.index .hotList .list .item{width:200rpx;text-align:left}.index .hotList .list .item~.item{margin-left:23rpx}.index .hotList .list .item .pictrue{width:100%;height:200rpx;position:relative}.index .hotList .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:10rpx;border-radius:10rpx}.index .hotList .list .item .pictrue .numPic{width:50rpx;height:50rpx;-webkit-border-radius:50%;border-radius:50%;position:absolute;top:7rpx;left:7rpx}.index .hotList .list .item .name{font-size:26rpx;color:#282828;margin-top:12rpx}.index .hotList .list .item .money{font-size:20rpx;font-weight:bold;margin-top:2rpx}.index .hotList .list .item .money .num{font-size:28rpx}.index .adver{width:100%;height:180rpx;margin-top:37rpx}.index .adver image{width:100%;height:100%;display:block}.index .hot{position:relative;background:none}.index .hot .title{position:relative;z-index:9}.index .hot .title .text .name{color:#fff}.index .hot .title .more{color:#fff}.index .hot .title .more .iconfont{color:#fff}.index .hot .bg{width:100%;position:absolute;left:0;top:0;right:0}.index .wrapper.hot .newProducts .newProductsItem{border:0}.index .wrapper.hot .title .text{color:#fff;font-size:28rpx}.index .wrapper.hot .title .text .iconfont{margin-right:10rpx}.index .wrapper.hot .newProducts{white-space:nowrap;padding:0 30rpx;margin:35rpx;overflow:hidden;background-color:#fff;padding:30rpx;z-index:99;position:relative;margin-bottom:0;-webkit-border-radius:20rpx;border-radius:20rpx;-webkit-box-shadow:0 0 20rpx -10rpx #aaa;box-shadow:0 0 20rpx -10rpx #aaa}.index .wrapper .newProducts{white-space:nowrap;padding:0 30rpx;margin:35rpx 0 42rpx 0;overflow:hidden}.index .wrapper .newProducts .swiper-wrapper{height:350rpx}.index .wrapper.hot .newProducts .newProductsItem{width:240rpx;min-width:240rpx;margin-right:20rpx;-webkit-box-flex:0;-webkit-flex:0 240rpx;-ms-flex:0 240rpx;flex:0 240rpx}.index .wrapper .newProducts .newProductsScroll{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.index .wrapper.hot .newProducts .newProductsItem image{width:240rpx;height:240rpx}.index .wrapper .newProducts .newProductsItem{border:1rpx solid #eee;width:240rpx;min-width:240rpx;-webkit-border-radius:12rpx;border-radius:12rpx;overflow:hidden;margin-right:20rpx;-webkit-box-flex:0;-webkit-flex:0 240rpx;-ms-flex:0 240rpx;flex:0 240rpx}.index .wrapper .newProducts .img-box{width:100%;height:240rpx}.index .wrapper.hot .newProducts .img-box{width:240rpx}.index .wrapper .newProducts .img-box image{width:100%;height:100%;-webkit-border-radius:12rpx 12rpx 0 0;border-radius:12rpx 12rpx 0 0}.index .wrapper.hot .newProducts .img-box image{-webkit-border-radius:12rpx;border-radius:12rpx}.index .wrapper .newProducts .pro-info{font-size:28rpx;color:#333;text-align:center;padding:15rpx 10rpx 0 10rpx}.index .wrapper .newProducts .money{padding:0 10rpx 18rpx 10rpx;text-align:center;font-size:26rpx;font-weight:bold}.index .wrapper.hot .newProducts .pro-info{text-align:left}.index .wrapper.hot .newProducts .money{text-align:left}.productList .search{width:100%;height:86rpx;padding-left:23rpx;padding-right:23rpx;position:fixed;left:0;top:0;z-index:5;-webkit-box-sizing:border-box;box-sizing:border-box}.productList .search .input{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;height:60rpx;background-color:#fff;-webkit-border-radius:50rpx;border-radius:50rpx;padding:0 20rpx;margin-right:23rpx}.productList .search .input input{width:548rpx;height:100%;font-size:26rpx}.productList .search .input input::-webkit-input-placeholder{color:#999}.productList .search .input input::-moz-placeholder{color:#999}.productList .search .input input:-ms-input-placeholder{color:#999}.productList .search .input input::-ms-input-placeholder{color:#999}.productList .search .input input::placeholder{color:#999}.productList .search .input .iconfont{font-size:35rpx;color:#555}.productList .search .icon-pailie,.productList .search .icon-tupianpailie{margin:0 auto;color:#fff;width:40rpx;font-size:40rpx;height:86rpx;line-height:86rpx}.productList .nav{height:86rpx;color:#454545;position:fixed;left:0;width:100%;font-size:28rpx;background-color:#fff;top:86rpx;z-index:5}.productList .nav .item{width:25%;text-align:center}.productList .nav .item.font-color{font-weight:bold}.productList .nav .item image{width:15rpx;height:19rpx;margin-left:10rpx}.productList .list{padding:0 20rpx;margin-top:172rpx}.productList .list.on{background-color:#fff;border-top:1px solid #f6f6f6}.productList .list .item{width:345rpx;margin-top:20rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx}.productList .list .item.on{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-bottom:1px solid #f6f6f6;padding:30rpx 0;margin:0}.productList .list .item .pictrue{width:100%;height:345rpx}.productList .list .item .pictrue.on{width:180rpx;height:180rpx}.productList .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:10rpx 10rpx 0 0;border-radius:10rpx 10rpx 0 0}.productList .list .item .pictrue img.on{-webkit-border-radius:6rpx;border-radius:6rpx}.productList .list .item .text{padding:20rpx 17rpx 26rpx 17rpx;font-size:30rpx;color:#222;text-align:left}.productList .list .item .text.on{width:508rpx;padding:0 0 0 22rpx}.productList .list .item .text .money{font-size:26rpx;font-weight:bold;margin-top:8rpx}.productList .list .item .text .money.on{margin-top:40rpx}.productList .list .item .text .money .num{font-size:34rpx}.productList .list .item .text .vip{font-size:22rpx;color:#aaa;margin-top:7rpx}.productList .list .item .text .vip.on{margin-top:11rpx}.productList .list .item .text .vip .vip-money{font-size:24rpx;color:#282828;font-weight:bold;text-decoration:line-through}.productList .list .item .text .vip .vip-money image{width:46rpx;height:21rpx;margin-left:4rpx}.shoppingCart .labelNav{-webkit-box-sizing:border-box;box-sizing:border-box;height:76rpx;padding:0 30rpx;font-size:22rpx;color:#8c8c8c;position:fixed;left:0;width:100%;background-color:#f5f5f5;z-index:5;top:0}.shoppingCart .labelNav .item .iconfont{font-size:25rpx;margin-right:10rpx}.shoppingCart .nav{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:80rpx;background-color:#fff;padding:0 30rpx;font-size:28rpx;color:#282828;position:fixed;left:0;z-index:5;top:76rpx;border-bottom:1px solid #f5f5f5}.shoppingCart .nav .administrate{font-size:26rpx;color:#282828;width:110rpx;height:46rpx;-webkit-border-radius:6rpx;border-radius:6rpx;border:1px solid #868686}.shoppingCart .noCart{margin-top:171rpx;background-color:#fff;padding:78rpx 0 56rpx 0}.shoppingCart .noCart .pictrue{width:414rpx;height:336rpx;margin:0 auto}.shoppingCart .noCart .pictrue image{width:100%;height:100%}.shoppingCart .list{margin-top:171rpx}.shoppingCart .list .item{padding:25rpx 30rpx;background-color:#fff;margin-bottom:15rpx}.shoppingCart .list .item .picTxt{width:627rpx;position:relative}.shoppingCart .list .item .picTxt .pictrue{width:160rpx;height:160rpx}.shoppingCart .list .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.shoppingCart .list .item .picTxt .text{width:444rpx;font-size:28rpx;color:#282828;text-align:left}.shoppingCart .list .item .picTxt .text .infor{font-size:24rpx;color:#868686;margin-top:16rpx}.shoppingCart .list .item .picTxt .text .money{font-size:32rpx;color:#282828;margin-top:26rpx}.shoppingCart .list .item .picTxt .carnum{height:44rpx;position:absolute;bottom:7rpx;right:0}.shoppingCart .list .item .picTxt .carnum view{border:1px solid #a4a4a4;width:66rpx;text-align:center;height:100%;line-height:44rpx;font-size:28rpx;color:#a4a4a4}.shoppingCart .list .item .picTxt .carnum .reduce{border-right:0;-webkit-border-radius:3rpx 0 0 3rpx;border-radius:3rpx 0 0 3rpx;line-height:39rpx}.shoppingCart .list .item .picTxt .carnum .reduce.on{border-color:#e3e3e3;color:#dedede}.shoppingCart .list .item .picTxt .carnum .plus{border-left:0;-webkit-border-radius:0 3rpx 3rpx 0;border-radius:0 3rpx 3rpx 0;line-height:38rpx}.shoppingCart .list .item .picTxt .carnum .num{color:#282828}.shoppingCart .invalidGoods{background-color:#fff}.shoppingCart .invalidGoods .goodsNav{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:66rpx;padding:0 30rpx;font-size:28rpx;color:#282828}.shoppingCart .invalidGoods .goodsNav .iconfont{color:#424242;font-size:28rpx;margin-right:17rpx}.shoppingCart .invalidGoods .goodsNav .del{font-size:26rpx;color:#999}.shoppingCart .invalidGoods .goodsNav .del .icon-shanchu1{color:#999;font-size:33rpx;vertical-align:-2rpx;margin-right:8rpx}.shoppingCart .invalidGoods .goodsList .item{padding:20rpx 30rpx;border-top:1px solid #f5f5f5}.shoppingCart .invalidGoods .goodsList .item .invalid{font-size:22rpx;color:#fff;width:70rpx;height:36rpx;background-color:#aaa;-webkit-border-radius:3rpx;border-radius:3rpx}.shoppingCart .invalidGoods .goodsList .item .pictrue{width:140rpx;height:140rpx}.shoppingCart .invalidGoods .goodsList .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.shoppingCart .invalidGoods .goodsList .item .text{width:433rpx;font-size:28rpx;color:#999;height:140rpx;text-align:left}.shoppingCart .invalidGoods .goodsList .item .text .infor{font-size:24rpx}.shoppingCart .invalidGoods .goodsList .item .text .end{font-size:26rpx;color:#bbb}.shoppingCart .footer{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:96rpx;background-color:#fafafa;position:fixed;bottom:0;padding:0 30rpx;border-top:1px solid #eee}.shoppingCart .iphonex-footer{bottom:168rpx}.shoppingCart .footer .checkAll{font-size:28rpx;color:#282828;margin-left:10rpx}.shoppingCart .footer .money{font-size:30rpx}.shoppingCart .footer .placeOrder{color:#fff;font-size:30rpx;width:226rpx;height:70rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:70rpx;margin-left:22rpx}.shoppingCart .footer .button .bnt{font-size:28rpx;color:#999;-webkit-border-radius:50rpx;border-radius:50rpx;border:1px solid #999;width:160rpx;height:60rpx;text-align:center;line-height:60rpx}.shoppingCart .footer .button .bnt~.bnt{margin-left:17rpx}.user .header{padding:0 30rpx;height:190rpx;position:relative}.user .header:after{position:absolute;left:0;right:0;bottom:-98rpx;z-index:-1;content:'';height:100rpx;width:100%;-webkit-border-radius:0 0 50% 50%;border-radius:0 0 50% 50%;background-color:#eb3729}.user .header .picTxt .pictrue{width:120rpx;height:120rpx}.user .header .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:3rpx solid #f5f5f5}.user .header .picTxt .text{width:434rpx;color:#fff;margin-left:35rpx;text-align:left}.user .header .picTxt .text .name{font-size:32rpx;max-width:260rpx;width:unset}.user .header .picTxt .text .member{padding:0 10rpx;height:36rpx;background-color:rgba(0,0,0,0.2);font-size:20rpx;-webkit-border-radius:30rpx;border-radius:30rpx;margin-left:17rpx}.user .header .picTxt .text .member image{width:28rpx;height:28rpx;font-size:20rpx;margin-right:8rpx}.user .header .picTxt .text .id{color:rgba(255,255,255,0.6);font-size:26rpx;margin-top:15rpx}.user .header .picTxt .text .id .iconfont{font-size:30rpx;margin-left:12rpx}.user .header .icon-shezhi{font-size:36rpx;color:#fff;margin-top:-52rpx}.user .wrapper{padding:0 20rpx}.user .wrapper .nav{background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;height:140rpx}.user .wrapper .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:26rpx;color:#aaa;position:relative}.user .wrapper .nav .item text{display:block}.user .wrapper .nav .item~.item:after{position:absolute;content:'';left:0;width:1px;height:70rpx;background-color:#eee;top:50%;margin-top:-35rpx}.user .wrapper .nav .item .num{margin-top:10rpx;font-size:36rpx;color:#282828}.user .wrapper .myOrder{background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin-top:15rpx}.user .wrapper .myOrder .title,.user .wrapper .myService .title{height:88rpx;padding:0 30rpx;border-bottom:1px dashed #eee;font-size:30rpx;color:#282828}.user .wrapper .myOrder .title .allOrder{font-size:26rpx;color:#666}.user .wrapper .myOrder .title .allOrder .iconfont{font-size:25rpx;margin-left:7rpx}.user .wrapper .myOrder .orderState{height:160rpx}.user .wrapper .myOrder .orderState .item{font-size:26rpx;color:#454545;-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center}.user .wrapper .myOrder .orderState .item .pictrue{width:49rpx;height:42rpx;margin:0 auto 18rpx auto}.user .wrapper .myOrder .orderState .item .pictrue image{width:100%;height:100%}.user .wrapper .myService{background-color:#fff;margin-top:15rpx;-webkit-border-radius:10rpx;border-radius:10rpx}.user .wrapper .myService .serviceList{padding:8rpx 0 27rpx 0}.user .wrapper .myService .serviceList .item{width:100%;text-align:left;font-size:26rpx;color:#333;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:20rpx 30rpx;position:relative}.user .wrapper .myService .serviceList .item .iconfont{font-size:26rpx;color:#666}.user .wrapper .myService .serviceList .item::after{content:"";display:block;position:absolute;left:30rpx;right:0;bottom:0;border-bottom:1rpx solid #f5f5f5;z-index:999;height:1rpx}.user .wrapper .myService .serviceList .item .pictrue{width:36rpx;height:36rpx;margin-right:16rpx}.user .wrapper .myService .serviceList .item .cell{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.user .wrapper .myService .serviceList .item .pictrue image{width:100%;height:100%}.user .support{width:219rpx;height:74rpx;margin:54rpx auto;display:block}.product-con .wrapper{background-color:#fff}.product-con .wrapper .share{margin:0 30rpx;padding-top:25rpx}.product-con .wrapper .share .money{font-size:28rpx;font-weight:bold}.product-con .wrapper .share .money .num{font-size:48rpx}.product-con .wrapper .share .money .vip-money{color:#282828;margin-left:13rpx}.product-con .wrapper .share .money .image{width:46rpx;height:21rpx;margin-left:7rpx}.product-con .wrapper .share .money .vip-money{color:#282828;margin-left:13rpx}.product-con .wrapper .share .iconfont{color:#515151;font-size:40rpx;margin-bottom:10rpx}.product-con .wrapper .introduce{font-size:32rpx;font-weight:bold;margin:10rpx 30rpx 0 30rpx}.product-con .wrapper .label{margin:22rpx 30rpx 0 30rpx;font-size:24rpx;color:#82848f;padding-bottom:25rpx}.product-con .wrapper .coupon{padding:0 30rpx;border-top:1px solid #f5f5f5;height:80rpx;font-size:26rpx;color:#82848f}.product-con .wrapper .coupon .hide{width:540rpx;height:80rpx;line-height:80rpx}.product-con .wrapper .coupon .activity{height:40rpx;padding:0 20rpx;border:1px solid #f2857b;color:#e93323;font-size:24rpx;line-height:40rpx;position:relative;margin:19rpx 0 19rpx 15rpx}.product-con .wrapper .coupon .activity:before{content:' ';position:absolute;width:7rpx;height:10rpx;-webkit-border-radius:0 7rpx 7rpx 0;border-radius:0 7rpx 7rpx 0;border:1px solid #f2857b;background-color:#fff;bottom:50%;left:-2rpx;margin-bottom:-7rpx;border-left-color:#fff}.product-con .wrapper .coupon .activity:after{content:' ';position:absolute;width:7rpx;height:10rpx;-webkit-border-radius:7rpx 0 0 7rpx;border-radius:7rpx 0 0 7rpx;border:1px solid #f2857b;background-color:#fff;right:-2rpx;bottom:50%;margin-bottom:-5rpx;border-right-color:#fff}.product-con .wrapper .coupon .iconfont{color:#7a7a7a;font-size:28rpx}.product-con .attribute{background-color:#fff;padding:0 30rpx;font-size:26rpx;color:#82848f;margin-top:20rpx;height:80rpx}.product-con .attribute .atterTxt{font-size:28rpx;color:#282828}.product-con .attribute .iconfont{font-size:28rpx;color:#7a7a7a}.product-con .userEvaluation{margin-top:20rpx;background-color:#fff}.product-con .userEvaluation .title{height:86rpx;border-bottom:1px solid #eee;font-size:28rpx;color:#282828;margin-left:30rpx;padding-right:30rpx}.product-con .userEvaluation .title .praise{font-size:28rpx;color:#808080}.product-con .userEvaluation .title .praise .iconfont{color:#7a7a7a;font-size:28rpx;vertical-align:1rpx;margin-left:8rpx}.product-con .product-intro{margin-top:20rpx}.product-con .product-intro .title{font-size:30rpx;color:#282828;height:86rpx;width:100%;background-color:#fff;text-align:center;line-height:86rpx}.product-con .product-intro .conter{width:100%}.product-con .product-intro .conter *{width:100% !important;display:block !important}.product-con .footer{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 20rpx 0 30rpx;position:fixed;bottom:0;width:100%;height:100rpx;background-color:#fff;z-index:99;border-top:1px solid #f0f0f0}.product-con .footer .item{font-size:18rpx;color:#666;margin-top:7rpx}.product-con .footer .item .iconfont{text-align:center;font-size:40rpx;height:40rpx;line-height:40rpx}.product-con .footer .item .iconfont.icon-gouwuche1{position:relative}.product-con .footer .item .iconfont.icon-gouwuche1 .num{color:#fff;position:absolute;font-size:18rpx;-webkit-border-radius:200rpx;border-radius:200rpx;top:-10rpx;right:0;height:30rpx;line-height:30rpx;padding:0 8rpx;min-width:30rpx}.product-con .footer .bnt{width:444rpx;height:76rpx;color:#fff;font-size:28rpx}.product-con .footer .bnt>view{width:222rpx;text-align:center;line-height:76rpx}.product-con .footer .bnt .joinCart{-webkit-border-radius:50rpx 0 0 50rpx;border-radius:50rpx 0 0 50rpx;background-image:-webkit-gradient(linear, left top, right top, from(#fea10f), to(#fea10f));background-image:-webkit-linear-gradient(left, #fea10f 0%, #fea10f 100%);background-image:-o-linear-gradient(left, #fea10f 0%, #fea10f 100%);background-image:linear-gradient(to right, #fea10f 0%, #fea10f 100%);background-image:-moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%)}.product-con .footer .bnt .buy{-webkit-border-radius:0 50rpx 50rpx 0;border-radius:0 50rpx 50rpx 0;background-image:-webkit-gradient(linear, left top, right top, from(#eb3729), to(#eb3729));background-image:-webkit-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:-o-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:linear-gradient(to right, #eb3729 0%, #eb3729 100%);background-image:-moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%)}.product-con .footer .bnt.seckill-bnt{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;margin-left:20rpx}.product-con .footer .bnt.seckill-bnt .buy{width:100%;-webkit-border-radius:50rpx;border-radius:50rpx}.order-submission .line{width:100%;height:3rpx}.order-submission .line image{width:100%;height:100%;display:block}.order-submission .address{padding:28rpx 30rpx;background-color:#fff}.order-submission .address .addressCon{width:570rpx;font-size:26rpx;color:#666}.order-submission .address .addressCon .name{font-size:30rpx;color:#282828;font-weight:bold;margin-bottom:10rpx}.order-submission .address .addressCon .name .phone{margin-left:50rpx}.order-submission .address .addressCon .default{margin-right:12rpx}.order-submission .address .addressCon .setaddress{color:#333;font-size:28rpx}.order-submission .address .iconfont{font-size:35rpx;color:#707070}.order-submission .wrapper{background-color:#fff;margin-top:13rpx}.order-submission .wrapper .item{padding:27rpx 30rpx;font-size:30rpx;color:#282828;border-bottom:1px solid #f0f0f0}.order-submission .wrapper .item .discount{font-size:30rpx;color:#999;width:500rpx;text-align:right}.order-submission .wrapper .item .discount .integral{margin-right:40rpx}.order-submission .wrapper .item .discount .checkbox-wrapper .icon{right:0;left:unset}.order-submission .wrapper .item .discount .iconfont{color:#515151;font-size:30rpx;margin-left:15rpx}.order-submission .wrapper .item .discount .num{font-size:32rpx;margin-right:20rpx}.order-submission .wrapper .item textarea{-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#f9f9f9;width:100%;height:140rpx;-webkit-border-radius:3rpx;border-radius:3rpx;margin-top:30rpx;padding:25rpx 28rpx}.order-submission .wrapper .item textarea::-webkit-input-placeholder{color:#ccc}.order-submission .wrapper .item textarea::-moz-placeholder{color:#ccc}.order-submission .wrapper .item textarea:-ms-input-placeholder{color:#ccc}.order-submission .wrapper .item textarea::-ms-input-placeholder{color:#ccc}.order-submission .wrapper .item textarea::placeholder{color:#ccc}.order-submission .wrapper .item .list{margin-top:35rpx}.order-submission .wrapper .item .list .payItem{border:1px solid #eee;-webkit-border-radius:6rpx;border-radius:6rpx;height:86rpx;width:100%;margin-top:20rpx;font-size:28rpx;color:#282828}.order-submission .wrapper .item .list .payItem.on{border-color:#fc5445;color:#e93323}.order-submission .wrapper .item .list .payItem .name{width:50%;text-align:center;border-right:1px solid #eee}.order-submission .wrapper .item .list .payItem .name .iconfont{width:44rpx;height:44rpx;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:44rpx;background-color:#fe960f;color:#fff;font-size:30rpx;margin-right:15rpx}.order-submission .wrapper .item .list .payItem .name .iconfont.icon-weixin2{background-color:#41b035}.order-submission .wrapper .item .list .payItem .name .iconfont.icon-yinhangqia{background-color:#eb3729}.order-submission .wrapper .item .list .payItem .tip{width:49%;text-align:center;font-size:26rpx;color:#aaa}.order-submission .moneyList{margin-top:12rpx;background-color:#fff;padding:30rpx}.order-submission .moneyList .item{font-size:28rpx;color:#282828}.order-submission .moneyList .item~.item{margin-top:20rpx}.order-submission .moneyList .item .money{color:#868686}.order-submission .footer{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100rpx;background-color:#fff;padding:0 30rpx;font-size:28rpx;color:#333;position:fixed;bottom:0;left:0}.order-submission .footer .settlement{font-size:30rpx;color:#fff;width:240rpx;height:70rpx;background-color:#e93323;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:70rpx}.address-management .line{width:100%;height:3rpx}.address-management .line image{width:100%;height:100%;display:block}.address-management .item{background-color:#fff;padding:0 30rpx;margin-bottom:12rpx}.address-management .item .address{padding:30rpx 0;border-bottom:1px solid #eee;font-size:28rpx;color:#282828}.address-management .item .address .consignee{font-size:28rpx;font-weight:bold;margin-bottom:8rpx}.address-management .item .address .consignee .phone{margin-left:25rpx}.address-management .item .operation{height:83rpx;font-size:28rpx;color:#282828}.address-management .item .operation .default{margin-left:10rpx}.address-management .item .operation .iconfont{color:#2c2c2c;font-size:30rpx;vertical-align:-2rpx;margin-right:10rpx}.address-management .item .operation .iconfont.icon-shanchu{margin-left:40rpx;font-size:33rpx}.address-management .footer{-webkit-box-sizing:border-box;box-sizing:border-box;position:fixed;width:100%;background-color:#fff;bottom:0;height:106rpx;padding:0 30rpx}.address-management .footer .addressBnt{width:330rpx;height:76rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:76rpx;font-size:30rpx;color:#fff}.address-management .footer .addressBnt.on{width:690rpx;margin:0 auto}.address-management .footer .addressBnt .iconfont{font-size:35rpx;margin-right:8rpx;vertical-align:-1rpx}.address-management .footer .addressBnt.wxbnt{background-color:#eb3729}.addAddress .list{background-color:#fff}.addAddress .list .item{padding:0 30rpx;min-height:90rpx;border-top:1rpx solid #eee;font-size:30rpx}.addAddress .list .item .name{width:195rpx;color:#333}.addAddress .list .item input{width:475rpx;font-size:30rpx}.addAddress .list .item input::-webkit-input-placeholder{color:#ccc}.addAddress .list .item input::-moz-placeholder{color:#ccc}.addAddress .list .item input:-ms-input-placeholder{color:#ccc}.addAddress .list .item input::-ms-input-placeholder{color:#ccc}.addAddress .list .item input::placeholder{color:#ccc}.addAddress .list .item .picker{width:475rpx}.addAddress .list .item .address{width:410rpx}.addAddress .list .item .picker .iconfont{font-size:43rpx}.addAddress .default{padding:0 30rpx;height:90rpx;background-color:#fff;margin-top:23rpx}.addAddress .default .def{margin-left:10rpx;height:83rpx;font-size:28rpx;color:#282828}.addAddress .keepBnt{width:690rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;margin:50rpx auto 30rpx auto;font-size:32rpx;color:#fff}.addAddress .wechatAddress{width:690rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;margin:0 auto;font-size:32rpx;color:#eb3729;border:1px solid #eb3729}.my-order .header{height:260rpx;padding:0 30rpx}.my-order .header .picTxt{height:190rpx}.my-order .header .picTxt .text{color:rgba(255,255,255,0.8);font-size:26rpx;font-family:'GuildfordProBook 5'}.my-order .header .picTxt .text .name{font-size:34rpx;font-weight:bold;color:#fff;margin-bottom:20rpx}.my-order .header .picTxt .pictrue{width:122rpx;height:109rpx}.my-order .header .picTxt .pictrue image{width:100%;height:100%}.my-order .nav{background-color:#fff;width:690rpx;height:140rpx;-webkit-border-radius:6rpx;border-radius:6rpx;margin:-73rpx auto 0 auto}.my-order .nav .item{text-align:center;font-size:26rpx;color:#282828;padding:29rpx 0 20rpx 0}.my-order .nav .item.on{font-weight:bold;border-bottom:5rpx solid #eb3729}.my-order .nav .item .num{margin-top:10rpx}.my-order .list{width:690rpx;margin:14rpx auto 0 auto}.my-order .list .item{background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;margin-bottom:14rpx}.my-order .list .item .title{height:84rpx;padding:0 30rpx;border-bottom:1rpx solid #eee;font-size:28rpx;color:#282828}.my-order .list .item .title .sign{font-size:24rpx;padding:0 7rpx;height:36rpx;margin-right:15rpx}.my-order .list .item .item-info{padding:0 30rpx;margin-top:22rpx}.my-order .list .item .item-info .pictrue{width:120rpx;height:120rpx}.my-order .list .item .item-info .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.my-order .list .item .item-info .text{width:486rpx;font-size:28rpx;color:#999;margin-top:6rpx}.my-order .list .item .item-info .text .name{width:306rpx;color:#282828}.my-order .list .item .item-info .text .money{text-align:right}.my-order .list .item .totalPrice{font-size:26rpx;color:#282828;text-align:right;margin:27rpx 0 0 30rpx;padding:0 30rpx 30rpx 0;border-bottom:1rpx solid #eee}.my-order .list .item .totalPrice .money{font-size:28rpx;font-weight:bold}.my-order .list .item .bottom{height:107rpx;padding:0 30rpx}.my-order .list .item .bottom .bnt{width:176rpx;height:60rpx;text-align:center;line-height:60rpx;color:#fff;-webkit-border-radius:50rpx;border-radius:50rpx;font-size:27rpx}.my-order .list .item .bottom .bnt.cancelBnt{border:1px solid #ddd;color:#aaa}.my-order .list .item .bottom .bnt.default{color:#444;border:1px solid #444}.my-order .list .item .bottom .bnt~.bnt{margin-left:17rpx}.order-details .header{padding:0 30rpx;height:150rpx}.order-details .header.on{background-color:#666 !important}.order-details .header .pictrue{width:110rpx;height:110rpx}.order-details .header .pictrue image{width:100%;height:100%}.order-details .header .data{color:rgba(255,255,255,0.8);font-size:24rpx;margin-left:27rpx}.order-details .header.on .data{margin-left:0}.order-details .header .data .state{font-size:30rpx;font-weight:bold;color:#fff;margin-bottom:7rpx}.order-details .header .data .time{margin-left:20rpx}.order-details .nav{background-color:#fff;font-size:26rpx;color:#282828;padding:25rpx 0}.order-details .nav .navCon{padding:0 40rpx}.order-details .nav .navCon .on{font-weight:bold;color:#eb3729}.order-details .nav .progress{padding:0 65rpx;margin-top:10rpx}.order-details .nav .progress .line{width:100rpx;height:2rpx;background-color:#939390}.order-details .nav .progress .iconfont{font-size:25rpx;color:#939390;margin-top:-2rpx;width:30rpx;height:30rpx;line-height:33rpx;text-align:center}.order-details .address{font-size:26rpx;color:#868686;background-color:#fff;padding:25rpx 30rpx 30rpx 30rpx}.order-details .address .name{font-size:30rpx;color:#282828;margin-bottom:10rpx}.order-details .address .name .phone{margin-left:40rpx}.order-details .line{width:100%;height:3rpx}.order-details .line image{width:100%;height:100%;display:block}.order-details .wrapper{background-color:#fff;margin-top:12rpx;padding:30rpx}.order-details .wrapper .item{font-size:28rpx;color:#282828}.order-details .wrapper .item~.item{margin-top:20rpx}.order-details .wrapper .item .conter{color:#868686;width:500rpx;text-align:right}.order-details .wrapper .item .conter .copy{font-size:20rpx;color:#333;-webkit-border-radius:3rpx;border-radius:3rpx;border:1px solid #666;padding:3rpx 15rpx;margin-left:24rpx}.order-details .wrapper .actualPay{border-top:1rpx solid #eee;margin-top:30rpx;padding-top:30rpx}.order-details .wrapper .actualPay .money{font-weight:bold;font-size:30rpx}.order-details .footer{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100rpx;position:fixed;bottom:0;left:0;background-color:#fff;padding:0 30rpx;border-top:1px solid #eee}.order-details .footer .bnt{width:176rpx;height:60rpx;text-align:center;line-height:60rpx;-webkit-border-radius:50rpx;border-radius:50rpx;color:#fff;font-size:27rpx}.order-details .footer .bnt.cancel{color:#aaa;border:1px solid #ddd}.order-details .footer .bnt.default{color:#444;border:1px solid #444}.order-details .footer .bnt~.bnt{margin-left:18rpx}.logistics .header{padding:23rpx 30rpx;background-color:#fff;height:166rpx}.logistics .header .pictrue{width:120rpx;height:120rpx}.logistics .header .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.logistics .header .text{width:540rpx;font-size:28rpx;color:#999;margin-top:6rpx}.logistics .header .text .name{width:365rpx;color:#282828}.logistics .header .text .money{text-align:right}.logistics .logisticsCon{background-color:#fff;margin:12rpx 0}.logistics .logisticsCon .company{height:120rpx;margin:0 0 45rpx 30rpx;padding-right:30rpx;border-bottom:1px solid #f5f5f5}.logistics .logisticsCon .company .picTxt{width:520rpx}.logistics .logisticsCon .company .picTxt .iconfont{width:50rpx;height:50rpx;background-color:#666;text-align:center;line-height:50rpx;color:#fff;font-size:35rpx}.logistics .logisticsCon .company .picTxt .text{width:450rpx;font-size:26rpx;color:#282828}.logistics .logisticsCon .company .picTxt .text .name{color:#999}.logistics .logisticsCon .company .picTxt .text .express{margin-top:5rpx}.logistics .logisticsCon .company .copy{font-size:20rpx;width:106rpx;height:40rpx;-webkit-border-radius:3rpx;border-radius:3rpx;border:1px solid #999}.logistics .logisticsCon .item{padding:0 40rpx;position:relative}.logistics .logisticsCon .item .circular{width:20rpx;height:20rpx;-webkit-border-radius:50%;border-radius:50%;position:absolute;top:-1rpx;left:31.5rpx;background-color:#ddd}.logistics .logisticsCon .item .circular.on{background-color:#eb3729}.logistics .logisticsCon .item .text{font-size:26rpx;color:#666;width:615rpx;border-left:1px solid #e6e6e6;padding:0 0 60rpx 38rpx}.logistics .logisticsCon .item .text.on{border-left-color:#f8c1bd}.logistics .logisticsCon .item .text .data{font-size:24rpx;color:#999;margin-top:10rpx}.logistics .logisticsCon .item .text .data .time{margin-left:15rpx}.payment-status{background-color:#fff;margin:195rpx auto 0 auto;-webkit-border-radius:10rpx;border-radius:10rpx;padding:1rpx 0 28rpx 0;width:690rpx;left:50%;margin-left:-345rpx}.payment-status .iconfont{font-size:70rpx;width:140rpx;height:140rpx;-webkit-border-radius:50%;border-radius:50%;color:#fff;text-align:center;line-height:130rpx;text-shadow:0 4px 0 #eb3729;border:6rpx solid #f5f5f5;margin:-76rpx auto 0 auto;background-color:#999}.payment-status .iconfont.fail{text-shadow:0 4px 0 #7a7a7a}.payment-status .status{font-size:32rpx;font-weight:bold;text-align:center;margin:25rpx 0 37rpx 0}.payment-status .wrapper{border:1px solid #eee;margin:0 30rpx 47rpx 30rpx;padding:35rpx 0;border-left:0;border-right:0}.payment-status .wrapper .item{font-size:28rpx;color:#282828}.payment-status .wrapper .item~.item{margin-top:20rpx}.payment-status .wrapper .item .itemCom{color:#666}.payment-status .returnBnt{width:630rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;color:#fff;font-size:30rpx;text-align:center;line-height:86rpx;margin:0 auto 20rpx auto}.personal-data .wrapper{margin:10rpx 0;background-color:#fff;padding:36rpx 30rpx 13rpx 30rpx}.personal-data .wrapper .title{margin-bottom:30rpx;font-size:32rpx;color:#282828}.personal-data .wrapper .wrapList .item{width:100%;background-color:#f8f8f8;-webkit-border-radius:20rpx;border-radius:20rpx;position:relative}.personal-data .wrapper .wrapList .item.on{-webkit-background-size:100% 100%;background-size:100% 100%;background-color:#fff}.personal-data .wrapper .wrapList .item .picTxt{width:445rpx}.personal-data .wrapper .wrapList .item .picTxt .pictrue{width:96rpx;height:96rpx;position:relative}.personal-data .wrapper .wrapList .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.personal-data .wrapper .wrapList .item .picTxt .pictrue img{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.personal-data .wrapper .wrapList .item .picTxt .pictrue .alter{width:30rpx;height:30rpx;-webkit-border-radius:50%;border-radius:50%;position:absolute;bottom:0;right:0}.personal-data .wrapper .wrapList .item .picTxt .text{width:325rpx}.personal-data .wrapper .wrapList .item .picTxt .text .name{width:100%;font-size:30rpx;color:#282828}.personal-data .wrapper .wrapList .item .picTxt .text .phone{font-size:24rpx;color:#999;margin-top:10rpx}.personal-data .wrapper .wrapList .item .bnt{font-size:24rpx;background-color:#fff;-webkit-border-radius:27rpx;border-radius:27rpx;width:140rpx;height:54rpx;border:2rpx solid #e93323}.personal-data .wrapper .wrapList .item .currentBnt{position:absolute;right:0;top:0;font-size:26rpx;background-color:rgba(233,51,35,0.1);width:140rpx;height:48rpx;-webkit-border-radius:0 20rpx 0 20rpx;border-radius:0 20rpx 0 20rpx}.personal-data .list{background-color:#fff}.personal-data .list .item{padding:30rpx 30rpx 30rpx 0;border-bottom:1px solid #f2f2f2;margin-left:30rpx;font-size:32rpx;color:#282828}.personal-data .list .item .pictrue{width:88rpx;height:88rpx}.personal-data .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.personal-data .list .item .input{width:415rpx;text-align:right;color:#868686}.personal-data .list .item .input input{color:#868686;text-align:right;width:100%}.personal-data .list .item .input .id{width:365rpx}.personal-data .list .item .input .iconfont{font-size:35rpx}.personal-data .list .item .input .iconfont.icon-xiangyou{font-size:30rpx;margin-left:27rpx}.personal-data .modifyBnt{font-size:32rpx;color:#fff;width:690rpx;height:90rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:90rpx;margin:76rpx auto 0 auto}.personal-data .logOut{font-size:32rpx;text-align:center;width:690rpx;height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;margin:30rpx auto 70rpx auto}.poster-poster .tip{height:80rpx;font-size:26rpx;color:#e8c787;text-align:center;line-height:80rpx}.poster-poster .tip .iconfont{font-size:36rpx;vertical-align:-4rpx;margin-right:18rpx}.poster-poster .poster{width:690rpx;height:100%;margin:0 auto}.poster-poster .poster image{width:100%;height:100%;display:block}.distribution-posters .slider-banner{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;padding:40rpx;position:relative}.distribution-posters .slider-banner .swiper-slide{width:600rpx !important;height:100%}.distribution-posters .slide-image{width:100%;height:100%;-webkit-border-radius:15rpx;border-radius:15rpx}.distribution-posters .keep{font-size:30rpx;color:#fff;width:600rpx;height:80rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:80rpx;margin:38rpx auto}.member-center .header{background-color:#232323;width:100%;padding:50rpx 0}.member-center .header .slider-banner{height:328rpx}.member-center .header .slider-banner .swiper-slide{width:636rpx !important;height:328rpx;-webkit-border-radius:16rpx;border-radius:16rpx;color:#fff;position:relative;background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%}.member-center .header .slider-banner .swiper-slide.diamonds{background-image:url("https://wx.yixiang.co/static/images/diamonds.jpg")}.member-center .header .slider-banner .swiper-slide.gold{background-image:url("https://wx.yixiang.co/static/images/gold.jpg")}.member-center .header .slider-banner .swiper-slide.silver{background-image:url("https://wx.yixiang.co/static/images/silver.jpg")}.member-center .header .slider-banner .swiper-slide.brass{background-image:url("https://wx.yixiang.co/static/images/brass.jpg")}.member-center .header .slider-banner .swiper-slide.bronze{background-image:url("https://wx.yixiang.co/static/images/bronze.jpg")}.member-center .header .slider-banner .swiper-slide.ordinary{background-image:url("https://wx.yixiang.co/static/images/ordinary.jpg")}.member-center .header .slider-banner .swiper-slide image{width:89rpx;height:108rpx;display:block;position:absolute;right:60rpx}.member-center .header .slider-banner .swiper-slide .name{font-size:46rpx;font-weight:bold;padding:33rpx 0 0 35rpx}.member-center .header .slider-banner .swiper-slide .discount{font-size:28rpx;font-weight:bold;margin:2rpx 0 0 35rpx}.member-center .header .slider-banner .swiper-slide .discount .iconfont{margin-left:10rpx;font-size:30rpx}.member-center .header .slider-banner .swiper-slide .nav{margin-top:48rpx}.member-center .header .slider-banner .swiper-slide .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;color:rgba(255,255,255,0.6);position:relative}.member-center .header .slider-banner .swiper-slide .nav .item .num{font-size:40rpx;color:#fff;font-family:'GuildfordProBook 5'}.member-center .header .slider-banner .swiper-slide .nav .item~.item::before{position:absolute;width:2rpx;height:32rpx;background-color:rgba(255,255,255,0.6);content:'';left:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.member-center .header .slider-banner .swiper-slide .lock{font-size:26rpx;margin:73rpx 0 0 35rpx}.member-center .header .slider-banner .swiper-slide .lock .iconfont{font-size:33rpx;margin-right:15rpx;vertical-align:-4rpx}.member-center .wrapper{background-color:#fff;padding-bottom:16rpx;margin-bottom:20rpx}.member-center .wrapper .title{height:98rpx;padding:0 30rpx;font-size:30rpx;font-weight:bold;color:#282828}.member-center .wrapper .title .iconfont{color:#eb3729;font-weight:normal;font-size:40rpx;margin-right:12rpx;vertical-align:-2rpx}.member-center .wrapper .title .num{font-size:28rpx;color:#999}.member-center .wrapper .title .num .current{color:#eb3729}.member-center .wrapper .list .item{width:690rpx;height:184rpx;background-color:#f9f9f9;margin:0 auto 20rpx auto;padding:27rpx 0 22rpx 0;-webkit-border-radius:12rpx;border-radius:12rpx}.member-center .wrapper .list .item .top{padding-right:27rpx;font-size:26rpx;color:#999}.member-center .wrapper .list .item .top .name{border-left:6rpx solid #eb3729;padding-left:20rpx;font-size:28rpx;color:#282828;font-weight:bold}.member-center .wrapper .list .item .top .name .iconfont{color:#999;font-size:30rpx;vertical-align:-2rpx;margin-left:10rpx}.member-center .wrapper .list .item .cu-progress{overflow:hidden;height:12rpx;background-color:#eee;width:636rpx;-webkit-border-radius:20rpx;border-radius:20rpx;margin:35rpx auto 0 auto}.member-center .wrapper .list .item .cu-progress .bg-red{width:0;height:100%;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;background-color:#eb3729;-webkit-border-radius:20rpx;border-radius:20rpx}.member-center .wrapper .list .item .experience{margin-top:17rpx;padding:0 27rpx;font-size:24rpx;color:#999}.member-center .wrapper .list .item .experience .num{color:#eb3729}.member-center .growthValue{background-color:#fff;-webkit-border-radius:16rpx;border-radius:16rpx;position:fixed;top:266rpx;left:50%;width:560rpx;height:740rpx;margin-left:-280rpx;z-index:99;-webkit-transform:translate3d(0, -200%, 0);transform:translate3d(0, -200%, 0);-webkit-transition:all .3s cubic-bezier(.25, .5, .5, .9);-o-transition:all .3s cubic-bezier(.25, .5, .5, .9);transition:all .3s cubic-bezier(.25, .5, .5, .9)}.member-center .growthValue.on{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.member-center .growthValue .pictrue{width:100%;height:257rpx;position:relative}.member-center .growthValue .pictrue image{width:100%;height:100%;-webkit-border-radius:16rpx 16rpx 0 0;border-radius:16rpx 16rpx 0 0}.member-center .growthValue .conter{padding:0 35rpx;font-size:30rpx;color:#333;margin-top:58rpx;line-height:1.5;height:350rpx;overflow:auto}.member-center .growthValue .pictrue .iconfont{position:absolute;font-size:65rpx;color:#fff;top:775rpx;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.integral-details .header{background-image:url('https://wx.yixiang.co/static/images/integralbg.jpg');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:360rpx;font-size:72rpx;color:#fff;padding:31rpx 0 45rpx 0;text-align:center;font-family:'GuildfordProBook 5'}.integral-details .header .currentScore{font-size:26rpx;color:rgba(255,255,255,0.8);text-align:center;margin-bottom:5rpx}.integral-details .header .line{width:60rpx;height:3rpx;background-color:#fff;margin:20rpx auto 0 auto}.integral-details .header .nav{font-size:22rpx;color:rgba(255,255,255,0.8);-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;margin-top:35rpx}.integral-details .header .nav .item{width:33.33%;text-align:center}.integral-details .header .nav .item .num{color:#fff;font-size:40rpx}.integral-details .wrapper .nav{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;width:690rpx;-webkit-border-radius:20rpx 20rpx 0 0;border-radius:20rpx 20rpx 0 0;margin:-96rpx auto 0 auto;background-color:#f7f7f7;height:96rpx;font-size:30rpx;color:#bbb}.integral-details .wrapper .nav .item{text-align:center;width:100%}.integral-details .wrapper .nav .item.on{background-color:#fff;color:#eb3729;font-weight:bold;-webkit-border-radius:20rpx 20rpx 0 0;border-radius:20rpx 20rpx 0 0}.integral-details .wrapper .nav .item .iconfont{font-size:38rpx;margin-right:10rpx}.integral-details .wrapper .list{background-color:#fff;padding:24rpx 30rpx}.integral-details .wrapper .list .tip{font-size:25rpx;width:690rpx;height:60rpx;-webkit-border-radius:50rpx;border-radius:50rpx;background-color:#fff5e2;border:1px solid #ffeac1;color:#c8a86b;padding:0 20rpx;margin-bottom:24rpx}.integral-details .wrapper .list .tip .iconfont{font-size:35rpx;margin-right:15rpx}.integral-details .wrapper .list .item{height:124rpx;border-bottom:1px solid #eee;font-size:24rpx;color:#999}.integral-details .wrapper .list .item .state{font-size:28rpx;color:#282828;margin-bottom:8rpx}.integral-details .wrapper .list .item .num{font-size:36rpx;font-family:'GuildfordProBook 5';color:#16ac57}.integral-details .wrapper .list2{background-color:#fff;padding:24rpx 0}.integral-details .wrapper .list2 .item{background-image:-webkit-gradient(linear, left top, right top, from(#fff7e7), to(#fffdf9));background-image:-webkit-linear-gradient(left, #fff7e7 0%, #fffdf9 100%);background-image:-o-linear-gradient(left, #fff7e7 0%, #fffdf9 100%);background-image:linear-gradient(to right, #fff7e7 0%, #fffdf9 100%);background-image:-moz-linear-gradient(to right, #fff7e7 0%, #fffdf9 100%);width:690rpx;height:180rpx;position:relative;-webkit-border-radius:10rpx;border-radius:10rpx;margin:0 auto 20rpx auto;padding:0 25rpx 0 180rpx}.integral-details .wrapper .list2 .item .pictrue{width:90rpx;height:150rpx;position:absolute;bottom:0;left:45rpx}.integral-details .wrapper .list2 .item .pictrue image{width:100%;height:100%}.integral-details .wrapper .list2 .item .name{width:285rpx;font-size:30rpx;font-weight:bold;color:#c8a86b}.integral-details .wrapper .list2 .item .earn{font-size:26rpx;color:#c8a86b;border:2rpx solid #c8a86b;text-align:center;line-height:52rpx;height:52rpx;width:160rpx;-webkit-border-radius:50rpx;border-radius:50rpx}.quality-recommend .title{height:120rpx;font-size:32rpx;color:#282828;background-color:#f5f5f5}.quality-recommend .title .line{width:230rpx;height:2rpx;background-color:#e9e9e9}.quality-recommend .title .name{margin:0 20rpx}.quality-recommend .title .name .iconfont{margin-right:13rpx;font-size:38rpx;vertical-align:-4rpx}.bargain-list .icon-xiangzuo{font-size:40rpx;color:#fff;position:fixed;top:51rpx;left:30rpx;z-index:99}.bargain-list .header{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:750rpx;height:713rpx}.bargain-list .list{-webkit-border-radius:30rpx;border-radius:30rpx;margin:30rpx 30rpx 66rpx 30rpx}.bargain-list .list .item{border-bottom:1px solid #eee;position:relative;height:223rpx;background-color:#fff;padding:0 24rpx;margin:0 auto 20rpx auto}.bargain-list .list .item .pictrue{width:160rpx;height:160rpx}.bargain-list .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.bargain-list .list .item .text{width:450rpx;font-size:30rpx;color:#282828;height:160rpx}.bargain-list .list .item .text .num{font-size:26rpx;color:#999}.bargain-list .list .item .text .num .iconfont{font-size:35rpx;margin-right:7rpx}.bargain-list .list .item .text .money{font-size:24rpx;font-weight:bold}.bargain-list .list .item .text .money .price{font-size:32rpx}.bargain-list .list .item .cutBnt{position:absolute;width:180rpx;height:50rpx;-webkit-border-radius:50rpx;border-radius:50rpx;font-size:24rpx;color:#fff;text-align:center;line-height:46rpx;right:24rpx;bottom:28rpx;-webkit-box-shadow:0 7rpx 0 #f8c1bd;box-shadow:0 7rpx 0 #f8c1bd;-moz-box-shadow:0 7rpx 0 #f8c1bd;-o-box-shadow:0 7rpx 0 #f8c1bd}.bargain-list .list .item .cutBnt .iconfont{margin-right:8rpx;font-size:30rpx}.bargain-list .list .load{font-size:24rpx;height:85rpx;text-align:center;line-height:85rpx}.bargain .icon-xiangzuo{font-size:40rpx;color:#fff;position:fixed;top:51rpx;left:30rpx;z-index:99}.bargain .header{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:698rpx;height:372rpx;margin:0 auto;padding-top:.1rpx;margin-top:40rpx}.bargain .header.on{background-image:url('https://wx.yixiang.co/static/images/cut2.png')}.bargain .header .pictxt{margin:260rpx auto 0 auto;font-size:26rpx;color:#fff}.bargain .header .pictxt .pictrue{width:56rpx;height:56rpx;margin-right:30rpx}.bargain .header .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:2rpx solid #fff}.bargain .header .pictxt .text text{margin-left:20rpx}.bargain .header .time{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:440rpx;height:166rpx;margin:80rpx auto 0 auto;font-size:22rpx;text-align:center;padding-top:9rpx;color:#fc4141}.bargain .header .people{text-align:center;color:#fff;font-size:20rpx;margin-top:20rpx}.bargain .header .time .styleAll{color:#333}.bargain .wrapper,.bargain .bargainGang,.bargain .goodsDetails{width:660rpx;border:6rpx solid #eb3729;background-color:#fff;-webkit-border-radius:20rpx;border-radius:20rpx;margin:-162rpx auto 0 auto;padding:0 24rpx 47rpx 24rpx;position:relative}.bargain .wrapper .pictxt{margin:26rpx 0 37rpx 0}.bargain .wrapper .pictxt .pictrue{width:180rpx;height:180rpx;position:relative}.bargain .wrapper .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.bargain .wrapper .pictxt .text{width:395rpx;font-size:28rpx;color:#282828;height:180rpx}.bargain .wrapper .pictxt .text .money{font-weight:bold;font-size:24rpx}.bargain .wrapper .pictxt .text .money .num{font-size:36rpx}.bargain .wrapper .pictxt .text .successNum{font-size:22rpx;color:#999;margin-right:15rpx}.bargain .wrapper .cu-progress{overflow:hidden;height:12rpx;background-color:#eee;width:100%;-webkit-border-radius:20rpx;border-radius:20rpx}.bargain .wrapper .cu-progress .bg-red{width:0;height:100%;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;-webkit-border-radius:20rpx;border-radius:20rpx;background-image:-webkit-gradient(linear, left top, right top, from(#ffa363), to(#e93323));background-image:-webkit-linear-gradient(left, #ffa363 0%, #e93323 100%);background-image:-o-linear-gradient(left, #ffa363 0%, #e93323 100%);background-image:linear-gradient(to right, #ffa363 0%, #e93323 100%);background-image:-moz-linear-gradient(to right, #ffa363 0%, #e93323 100%)}.bargain .wrapper .balance{font-size:22rpx;color:#999;margin-top:15rpx}.bargain .wrapper .bargainSuccess{font-size:26rpx;color:#282828;text-align:center}.bargain .wrapper .bargainSuccess .iconfont{font-size:45rpx;color:#54c762;padding-right:18rpx;vertical-align:-5rpx}.bargain .wrapper .bargainBnt{font-size:30rpx;font-weight:bold;color:#fff;width:100%;height:80rpx;-webkit-border-radius:40rpx;border-radius:40rpx;background-image:-webkit-gradient(linear, left top, right top, from(#f67a38), to(#f11b09));background-image:-webkit-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:-o-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:linear-gradient(to right, #f67a38 0%, #f11b09 100%);text-align:center;line-height:80rpx;margin-top:32rpx}.bargain .wrapper .bargainBnt.on{border:2rpx solid #eb3729;color:#eb3729;background-image:-webkit-gradient(linear, left top, right top, from(#fff), to(#fff));background-image:-webkit-linear-gradient(left, #fff 0%, #fff 100%);background-image:-o-linear-gradient(left, #fff 0%, #fff 100%);background-image:linear-gradient(to right, #fff 0%, #fff 100%);background-image:-moz-linear-gradient(to right, #fff 0%, #fff 100%);width:100%;height:76rpx}.bargain .wrapper .tip{font-size:22rpx;color:#999;text-align:center;margin-top:20rpx}.bargain .wrapper .lock,.bargain .bargainGang .lock,.bargain .goodsDetails .lock{background-image:url('https://wx.yixiang.co/static/images/lock.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:548rpx;height:66rpx;position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:-43rpx;z-index:5}.bargain .bargainGang{margin:13rpx auto 0 auto}.bargain .bargainGang .title,.bargain .goodsDetails .title{font-size:32rpx;font-weight:bold;height:80rpx;margin-top:30rpx}.bargain .bargainGang .title .pictrue,.bargain .goodsDetails .title .pictrue{width:46rpx;height:24rpx}.bargain .bargainGang .title .pictrue.on,.bargain .goodsDetails .title .pictrue.on{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.bargain .bargainGang .title .pictrue image,.bargain .goodsDetails .title .pictrue image{width:100%;height:100%;display:block}.bargain .bargainGang .title .titleCon,.bargain .goodsDetails .title .titleCon{margin:0 20rpx}.bargain .bargainGang .list .item{border-bottom:1px dashed #ddd;height:112rpx}.bargain .bargainGang .list .item .pictxt{width:310rpx}.bargain .bargainGang .list .item .pictxt .pictrue{width:70rpx;height:70rpx}.bargain .bargainGang .list .item .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:.02px solid #eb3729}.bargain .bargainGang .list .item .pictxt .text{width:225rpx;font-size:20rpx;color:#999}.bargain .bargainGang .list .item .pictxt .text .name{font-size:25rpx;color:#282828;margin-bottom:7rpx}.bargain .bargainGang .list .item .money{font-size:25rpx}.bargain .bargainGang .list .item .money .iconfont{font-size:35rpx;vertical-align:middle;margin-right:10rpx}.bargain .bargainGang .load{font-size:24rpx;text-align:center;line-height:80rpx;height:80rpx}.bargain .goodsDetails{margin:13rpx auto 0 auto}.bargain .goodsDetails~.goodsDetails{margin-bottom:50rpx}.bargain .goodsDetails .conter{margin-top:20rpx}.bargain .goodsDetails .conter image{width:100% !important;display:block}.bargain .bargainTip{position:fixed;top:50%;left:50%;width:560rpx;margin-left:-280rpx;z-index:99;-webkit-border-radius:20rpx;border-radius:20rpx;background-color:#fff;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);padding-bottom:60rpx;margin-top:-330rpx}.bargain .bargainTip.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.bargain .bargainTip .pictrue{width:100%;height:321rpx;position:relative}.bargain .bargainTip .pictrue .iconfont{position:absolute;right:18rpx;top:18rpx;color:#fff;font-size:36rpx;width:50rpx;height:50rpx;text-align:center;line-height:50rpx}.bargain .bargainTip .pictrue image{width:100%;height:100%;-webkit-border-radius:20rpx 20rpx 0 0;border-radius:20rpx 20rpx 0 0}.bargain .bargainTip .cutOff{font-size:30rpx;color:#666;padding:0 29rpx;text-align:center;margin-top:50rpx}.bargain .bargainTip .cutOff.on{margin-top:26rpx}.bargain .bargainTip .help{font-size:32rpx;font-weight:bold;text-align:center;margin-top:40rpx}.bargain .bargainTip .tipBnt{font-size:32rpx;color:#fff;width:360rpx;height:82rpx;-webkit-border-radius:41rpx;border-radius:41rpx;background-image:-webkit-gradient(linear, left top, right top, from(#f67a38), to(#f11b09));background-image:-webkit-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:-o-linear-gradient(left, #f67a38 0%, #f11b09 100%);background-image:linear-gradient(to right, #f67a38 0%, #f11b09 100%);background-image:-moz-linear-gradient(to right, #f67a38 0%, #f11b09 100%);text-align:center;line-height:82rpx;margin:50rpx auto 0 auto}.bargain-record .item{background-color:#fff;margin-bottom:12rpx}.bargain-record .item .picTxt{height:210rpx;border-bottom:1px solid #f0f0f0;padding:0 30rpx}.bargain-record .item .picTxt .pictrue{width:150rpx;height:150rpx}.bargain-record .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.bargain-record .item .picTxt .text{width:515rpx;font-size:30rpx;color:#282828;height:150rpx}.bargain-record .item .picTxt .text .time{font-size:24rpx;color:#868686}.bargain-record .item .picTxt .text .time .styleAll{color:#fc4141}.bargain-record .item .picTxt .text .money{font-size:24rpx}.bargain-record .item .picTxt .text .money .num{font-size:32rpx;font-weight:bold}.bargain-record .item .picTxt .text .money .symbol{font-weight:bold}.bargain-record .item .bottom{height:100rpx;padding:0 30rpx;font-size:27rpx}.bargain-record .item .bottom .purple{color:#f78513}.bargain-record .item .bottom .end{color:#999}.bargain-record .item .bottom .success{color:#e93323}.bargain-record .item .bottom .bnt{font-size:27rpx;color:#fff;width:176rpx;height:60rpx;-webkit-border-radius:6rpx;border-radius:6rpx;text-align:center;line-height:60rpx}.bargain-record .item .bottom .bnt.cancel{color:#aaa;border:1px solid #ddd}.bargain-record .item .bottom .bnt~.bnt{margin-left:18rpx}.group-list .header{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:450rpx}.group-list .header image{width:100%;height:450rpx}.group-list .list .item{width:690rpx;height:208rpx;background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;padding:0 24rpx;margin:0 auto 20rpx auto}.group-list .list .item .pictrue{width:160rpx;height:160rpx}.group-list .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.group-list .list .item .text{width:458rpx;font-size:30rpx;color:#282828}.group-list .list .item .text .team{height:40rpx;-webkit-border-radius:4rpx;border-radius:4rpx;font-size:22rpx;margin-top:20rpx}.group-list .list .item .text .team .iconfont{width:54rpx;background-color:#c6f3e8;text-align:center;color:#eb3729;height:100%;line-height:38rpx}.group-list .list .item .text .team .num{text-align:center;padding:0 10rpx}.group-list .list .item .text .bottom{margin-top:7rpx}.group-list .list .item .text .bottom .money{font-size:24rpx;font-weight:bold;color:#282828}.group-list .list .item .text .bottom .money .num{font-size:32rpx}.group-list .list .item .text .bottom .money .y-money{font-size:24rpx;color:#999;font-weight:normal;text-decoration:line-through;margin-left:10rpx}.group-list .list .item .text .bottom .groupBnt{font-size:26rpx;color:#fff;width:146rpx;height:54rpx;text-align:center;line-height:54rpx;-webkit-border-radius:4rpx;border-radius:4rpx}.group-list .list .item .text .bottom .groupBnt .iconfont{font-size:25rpx;margin-left:10rpx}.product-con .wrapper .share .money .y-money{color:#82848f;margin-left:13rpx;text-decoration:line-through;font-weight:normal}.product-con .notice{width:100%;height:62rpx;background-color:#ffedeb;margin-top:20rpx;padding:0 30rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.product-con .notice .num{font-size:24rpx}.product-con .notice .num .iconfont{font-size:30rpx;vertical-align:-3rpx;margin-right:20rpx}.product-con .notice .num .line{color:#282828;margin-left:15rpx}.product-con .notice .swiper{height:100%;width:470rpx;line-height:62rpx;overflow:hidden;margin-left:14rpx}.product-con .notice .swiper swiper{height:100%}.product-con .notice .swiper .swiper-slide{height:100%}.product-con .notice .swiper .line1{height:100%;overflow:hidden;font-size:20rpx;color:#282828}.product-con .assemble{background-color:#fff}.product-con .assemble .item{padding-right:30rpx;margin-left:30rpx;border-bottom:1px solid #f0f0f0;height:132rpx}.product-con .assemble .item .pictxt{width:295rpx}.product-con .assemble .item .pictxt .text{width:194rpx}.product-con .assemble .item .pictxt .pictrue{width:80rpx;height:80rpx}.product-con .assemble .item .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.product-con .assemble .item .right .lack{font-size:24rpx;color:#333333;text-align:right}.product-con .assemble .item .right .time{font-size:22rpx;color:#82848f;margin-top:5rpx}.product-con .assemble .item .right .spellBnt{font-size:24rpx;color:#fff;width:140rpx;height:50rpx;-webkit-border-radius:50rpx;border-radius:50rpx;background-image:-webkit-gradient(linear, left top, right top, from(#ff2358), to(#ff0000));background-image:-webkit-linear-gradient(left, #ff2358 0%, #ff0000 100%);background-image:-o-linear-gradient(left, #ff2358 0%, #ff0000 100%);background-image:linear-gradient(to right, #ff2358 0%, #ff0000 100%);background-image:-moz-linear-gradient(to right, #ff2358 0%, #ff0000 100%);text-align:center;line-height:50rpx;margin-left:30rpx}.product-con .assemble .item .right .spellBnt .iconfont{font-size:20rpx;margin-left:5rpx}.product-con .assemble .more{font-size:24rpx;color:#282828;text-align:center;height:90rpx;line-height:90rpx}.product-con .assemble .more .iconfont{margin-left:13rpx;font-size:25rpx}.product-con .playWay{background-color:#fff;padding:0 30rpx;margin-top:20rpx;font-size:28rpx;color:#282828}.product-con .playWay .title{height:86rpx;border-bottom:1px solid #eee}.product-con .playWay .title .iconfont{margin-left:13rpx;font-size:28rpx;color:#717171}.product-con .playWay .way{min-height:110rpx;font-size:26rpx;color:#282828}.product-con .playWay .way .iconfont{color:#cdcdcd;font-size:40rpx;margin:0 35rpx}.product-con .playWay .way .item .num{font-size:30rpx;margin-right:6rpx}.product-con .playWay .way .item .tip{font-size:22rpx;color:#a5a5a5}.product-con .footer-group{position:fixed;bottom:0;width:100%;height:100rpx;background-color:#fff;font-size:18rpx;color:#666;z-index:99}.product-con .footer-group .customerSer{width:14%;font-size:20rpx;color:#666}.product-con .footer-group .customerSer .iconfont{font-size:35rpx}.product-con .footer-group .bnt{width:86%;text-align:center;line-height:100rpx;height:100%;color:#fff;font-size:30rpx}.product-con .superior .slider-banner .swiper-pagination-bullet{background-color:#999}.product-con .superior .slider-banner .swiper-pagination-bullet-active{background-color:#e93323}.product-con .superior .slider-banner .swiper-container-horizontal>.swiper-pagination-bullets{bottom:0}.group-con .header{width:100%;height:186rpx;background-color:#fff;border-top:1px solid #f5f5f5;padding:0 30rpx;position:relative}.group-con .header .iconfont{font-size:100rpx;position:absolute;color:#ccc;right:33rpx;bottom:20rpx}.group-con .header .pictrue{width:140rpx;height:140rpx}.group-con .header .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.group-con .header .text{width:525rpx;font-size:30rpx;color:#222}.group-con .header .text .money{font-size:24rpx;font-weight:bold;margin-top:15rpx}.group-con .header .text .money .num{font-size:32rpx}.group-con .header .text .money .team{padding:1rpx 10rpx;font-weight:normal;-webkit-border-radius:50rpx;border-radius:50rpx;font-size:20rpx;vertical-align:4rpx;margin-left:15rpx}.group-con .wrapper{background-color:#fff;margin-top:20rpx;padding:2rpx 0 35rpx 0}.group-con .wrapper .title{margin-top:30rpx}.group-con .wrapper .title .line{width:136rpx;height:1px;background-color:#ddd}.group-con .wrapper .title .name{margin:0 45rpx;font-size:28rpx;color:#282828}.group-con .wrapper .title .name .time{margin:0 14rpx}.group-con .wrapper .title .name .timeTxt{color:#fc4141}.group-con .wrapper .title .name .time .styleAll{background-color:#ffcfcb;text-align:center;-webkit-border-radius:3rpx;border-radius:3rpx;font-size:28rpx;font-weight:bold;display:inline-block;vertical-align:middle;color:#fc4141;padding:2rpx 5rpx}.group-con .wrapper .tips{font-size:30rpx;font-weight:bold;text-align:center;margin-top:30rpx;color:#999}.group-con .wrapper .list{padding:0 30rpx;margin-top:45rpx}.group-con .wrapper .list.result{max-height:240rpx;overflow:hidden}.group-con .wrapper .list.result.on{max-height:2000rpx}.group-con .wrapper .list .pictrue{width:94rpx;height:94rpx;margin:0 0 29rpx 35rpx}.group-con .wrapper .list .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:2rpx solid #e93323}.group-con .wrapper .list .pictrue img.img-none{border:none}.group-con .wrapper .lookAll{font-size:24rpx;color:#282828;padding-top:10rpx}.group-con .wrapper .lookAll .iconfont{font-size:25rpx;margin:2rpx 0 0 10rpx}.group-con .wrapper .teamBnt{font-size:30rpx;width:620rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;color:#fff;margin:21rpx auto 0 auto}.group-con .wrapper .cancel,.group-con .wrapper .lookOrder{text-align:center;font-size:24rpx;color:#282828;padding-top:30rpx}.group-con .wrapper .cancel .iconfont{font-size:35rpx;color:#2c2c2c;vertical-align:-4rpx;margin-right:9rpx}.group-con .wrapper .lookOrder .iconfont{font-size:25rpx;color:#2c2c2c;margin-left:10rpx}.group-con .group-recommend{background-color:#fff;margin-top:25rpx}.group-con .group-recommend .title{padding-right:30rpx;margin-left:30rpx;height:85rpx;border-bottom:1px solid #eee;font-size:28rpx;color:#282828}.group-con .group-recommend .title .more{color:#808080}.group-con .group-recommend .title .more .iconfont{margin-left:13rpx;font-size:28rpx}.group-con .group-recommend .list{margin-top:30rpx}.group-con .group-recommend .list .item{width:210rpx;margin:0 0 25rpx 30rpx}.group-con .group-recommend .list .item .pictrue{width:100%;height:210rpx;position:relative}.group-con .group-recommend .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:10rpx;border-radius:10rpx}.group-con .group-recommend .list .item .pictrue .team{position:absolute;top:28rpx;left:-5rpx;min-width:100rpx;height:36rpx;line-height:36rpx;text-align:center;-webkit-border-radius:0 18rpx 18rpx 0;border-radius:0 18rpx 18rpx 0;font-size:20rpx;color:#fff;background-image:-webkit-gradient(linear, left top, right top, from(#fb5445), to(#e93323));background-image:-webkit-linear-gradient(left, #fb5445 0%, #e93323 100%);background-image:-o-linear-gradient(left, #fb5445 0%, #e93323 100%);background-image:linear-gradient(to right, #fb5445 0%, #e93323 100%);background-image:-moz-linear-gradient(to right, #fb5445 0%, #e93323 100%)}.group-con .group-recommend .list .item .name{font-size:28rpx;color:#333;margin-top:18rpx}.group-con .group-recommend .list .item .money{font-weight:bold;font-size:26rpx}.evaluate-list .generalComment{height:94rpx;padding:0 30rpx;background-color:#fff;font-size:28rpx;color:#808080}.evaluate-list .generalComment .evaluate{margin-right:7rpx}.evaluate-list .nav{font-size:24rpx;color:#282828;padding:0 30rpx 15rpx 30rpx;background-color:#fff;border-bottom:1px solid #f5f5f5}.evaluate-list .nav .item{font-size:24rpx;color:#282828;-webkit-border-radius:6rpx;border-radius:6rpx;height:54rpx;padding:0 20rpx;background-color:#f4f4f4;line-height:54rpx;margin:0 17rpx 17rpx 0}.evaluate-list .nav .item.bg-color-red{color:#fff}.evaluate-con .score{background-color:#fff;border-top:1px solid #f5f5f5;font-size:28rpx;color:#282828;padding:48rpx 30rpx 65rpx 30rpx}.evaluate-con .score .item~.item{margin-top:25rpx}.evaluate-con .score .item .starsList{padding:0 35rpx 0 40rpx}.evaluate-con .score .item .starsList .iconfont{font-size:40rpx;color:#aaa}.evaluate-con .score .item .starsList .iconfont~.iconfont{margin-left:20rpx}.evaluate-con .score .item .evaluate{color:#aaa;font-size:24rpx}.evaluate-con .score .textarea{width:690rpx;background-color:#fafafa;-webkit-border-radius:10rpx;border-radius:10rpx;margin-top:48rpx}.evaluate-con .score .textarea textarea{font-size:28rpx;padding:38rpx 30rpx 0 30rpx;width:100%;height:160rpx}.evaluate-con .score .textarea textarea::-webkit-input-placeholder{color:#bbb}.evaluate-con .score .textarea textarea::-moz-placeholder{color:#bbb}.evaluate-con .score .textarea textarea:-ms-input-placeholder{color:#bbb}.evaluate-con .score .textarea textarea::-ms-input-placeholder{color:#bbb}.evaluate-con .score .textarea textarea::placeholder{color:#bbb}.evaluate-con .score .textarea .list{margin-top:25rpx;padding-left:5rpx}.evaluate-con .score .textarea .list .pictrue{width:140rpx;height:140rpx;margin:0 0 35rpx 25rpx;position:relative;font-size:22rpx;color:#bbb}.evaluate-con .score .textarea .list .pictrue image{width:100%;height:100%;-webkit-border-radius:3rpx;border-radius:3rpx}.evaluate-con .score .textarea .list .pictrue .icon-guanbi1{font-size:45rpx;position:absolute;top:-20rpx;right:-20rpx}.evaluate-con .score .textarea .list .pictrue .icon-icon25201{color:#bfbfbf;font-size:50rpx}.evaluate-con .score .evaluateBnt{font-size:30rpx;color:#fff;width:690rpx;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;text-align:center;line-height:86rpx;margin-top:45rpx}.sign .header{width:100%;height:310rpx}.sign .header .headerCon{padding:0 0 0 30rpx;height:234rpx}.sign .header .headerCon .left{width:530rpx;font-size:32rpx;color:#fff;font-weight:bold}.sign .header .headerCon .left .integral text{font-size:24rpx;margin-top:19rpx;background-color:#ff9000;text-align:center;-webkit-border-radius:6rpx;border-radius:6rpx;font-weight:normal;padding:6rpx 15rpx}.sign .header .headerCon .text{width:410rpx}.sign .header .headerCon .left .pictrue{width:86rpx;height:86rpx;-webkit-border-radius:50%;border-radius:50%;border:4rpx solid #ecddbc}.sign .header .headerCon .left .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.sign .header .headerCon .right{width:142rpx;height:66rpx;background-color:#fff;-webkit-border-radius:50rpx 0 0 50rpx;border-radius:50rpx 0 0 50rpx;font-size:24rpx;color:#ff9000}.sign .header .headerCon .right .iconfont{font-size:33rpx;padding:0 10rpx 0 30rpx;height:35rpx;line-height:35rpx}.sign .wrapper{background-color:#fff;margin:-80rpx 20rpx 0 20rpx;-webkit-border-radius:15rpx;border-radius:15rpx;padding-bottom:80rpx;position:relative}.sign .wrapper .list{padding:0 30rpx;height:240rpx}.sign .wrapper .list .item{font-size:22rpx;color:#8a8886;text-align:center}.sign .wrapper .list .item .rewardTxt{width:74rpx;height:32rpx;background-color:#f4b409;-webkit-border-radius:16rpx;border-radius:16rpx;font-size:20rpx;color:#a57d3f;line-height:32rpx}.sign .wrapper .list .item .num{font-size:30rpx;color:#999}.sign .wrapper .list .item .num.on{color:#ff9000}.sign .wrapper .list .item .venus{background-image:url('https://wx.yixiang.co/static/images/stars2.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:56rpx;height:56rpx;margin:10rpx 0}.sign .wrapper .list .item .venus.venusSelect{background-image:url('https://wx.yixiang.co/static/images/stars1.png')}.sign .wrapper .list .item .venus.reward{background-image:url('https://wx.yixiang.co/static/images/stars3.png');width:75rpx;height:56rpx}.sign .wrapper .but{width:400rpx;height:76rpx;font-size:30rpx;line-height:76rpx;color:#fff;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;margin:0 auto}.sign .wrapper .but.on{background-color:#999 !important}.sign .wrapper .lock{background-image:url('https://wx.yixiang.co/static/images/lock2.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:558rpx;height:68rpx;position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:-41rpx;z-index:9}.sign .wrapper2{margin-top:15rpx;padding:73rpx 0 0 0}.sign .wrapper2 .tip{font-size:30rpx;color:#666;text-align:center}.sign .wrapper2 .list2{margin:45rpx 0 49rpx 0}.sign .wrapper2 .list2 .item{width:80rpx;height:116rpx;background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;color:#fff;font-size:72rpx;text-align:center;line-height:116rpx;margin-right:19rpx;background-image:url('https://wx.yixiang.co/static/images/redBg.png')}.sign .wrapper2 .list2 .data{font-size:30rpx;color:#232323}.sign .wrapper2 .tip2{font-size:30rpx;color:#999999;padding:0 55rpx;text-align:center;line-height:1.5}.sign .list3{margin:45rpx 37rpx 0 37rpx;border-top:1px dashed #eee}.sign .list3 .item{border-bottom:1px solid #eee;height:130rpx}.sign .list3 .item .name{color:#232323;font-size:30rpx;width:400rpx}.sign .list3 .item .data{font-size:24rpx;color:#bbbbbb;margin-top:9rpx}.sign .list3 .item .num{font-size:36rpx;font-family:'GuildfordProBook 5'}.sign .signTip{width:644rpx;height:645rpx;position:fixed;top:50%;left:50%;margin-left:-322rpx;margin-top:-322.5rpx;z-index:99;text-align:center;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.sign .signTip .signTipLight{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:100%}.sign .signTip.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.sign .signTip .signTipCon{background-image:url('https://wx.yixiang.co/static/images/register.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:420rpx;height:420rpx;margin-top:-700rpx;position:relative}.sign .signTip .signTipCon .state{font-size:34rpx;color:#fff;margin-top:150rpx}.sign .signTip .signTipCon .integral{font-size:30rpx;color:rgba(255,255,255,0.6);margin-top:9rpx}.sign .signTip .signTipCon .signTipBnt{font-size:30rpx;color:#eb4331;width:260rpx;height:76rpx;background-color:#f8d168;-webkit-border-radius:38rpx;border-radius:38rpx;line-height:76rpx;margin:48rpx auto 0 auto}.sign-record .list .item .data{height:80rpx;line-height:80rpx;padding:0 30rpx;font-size:24rpx;color:#666}.sign-record .list .item .listn{background-color:#fff;font-size:24rpx;color:#999}.sign-record .list .item .listn .itemn{height:120rpx;border-bottom:1px solid #eee;padding-right:30rpx;margin-left:30rpx}.sign-record .list .item .listn .itemn .name{width:390rpx;font-size:28rpx;color:#282828;margin-bottom:6rpx}.sign-record .list .item .listn .itemn .num{font-size:36rpx;font-family:'GuildfordProBook 5';color:#16ac57}.apply-return .list{background-color:#fff;margin-top:18rpx}.apply-return .list .item{margin-left:30rpx;padding-right:30rpx;min-height:90rpx;border-bottom:1px solid #eee;font-size:30rpx;color:#333}.apply-return .list .item .num{color:#282828;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;text-align:right;position:relative}.apply-return .list .item .num .picker{text-align:right}.apply-return .list .item .num .iconfont{color:#666;font-size:30rpx;position:absolute;right:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.apply-return .list .item.textarea{padding:30rpx 30rpx 30rpx 0}.apply-return .list .item textarea{height:100rpx;font-size:30rpx}.apply-return .list .item textarea::-webkit-input-placeholder{color:#bbb}.apply-return .list .item textarea::-moz-placeholder{color:#bbb}.apply-return .list .item textarea:-ms-input-placeholder{color:#bbb}.apply-return .list .item textarea::-ms-input-placeholder{color:#bbb}.apply-return .list .item textarea::placeholder{color:#bbb}.apply-return .list .item .title{height:95rpx;width:100%}.apply-return .list .item .title .tip{font-size:30rpx;color:#bbb}.apply-return .list .item .upload{padding-bottom:36rpx}.apply-return .list .item .upload .pictrue{margin:22rpx 23rpx 0 0;width:156rpx;height:156rpx;position:relative;font-size:24rpx;color:#bbb;border:1px solid #bbb}.apply-return .list .item .upload .pictrue:nth-of-type(4n){margin-right:0}.apply-return .list .item .upload .pictrue image{width:100%;height:100%;-webkit-border-radius:3rpx;border-radius:3rpx}.apply-return .list .item .upload .pictrue .icon-guanbi1{position:absolute;font-size:45rpx;top:-10rpx;right:-10rpx;width:45rpx;height:45rpx;line-height:45rpx}.apply-return .list .item .upload .pictrue .icon-icon25201{color:#bfbfbf;font-size:50rpx;width:50rpx;height:60rpx;line-height:60rpx}.apply-return .list .item .upload .pictrue:nth-last-child(1){border:1px solid #ddd}.apply-return .returnBnt{font-size:32rpx;color:#fff;width:690rpx;height:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:86rpx;margin:43rpx auto}.return-list .goodWrapper{background-color:#fff;margin-bottom:13rpx;position:relative}.return-list .goodWrapper .orderNum{padding:0 30rpx;border-bottom:1px solid #eee;height:87rpx;line-height:87rpx;font-size:30rpx;color:#282828}.return-list .goodWrapper .item{border-bottom:0}.return-list .goodWrapper .totalSum{padding:0 30rpx 32rpx 30rpx;text-align:right;font-size:26rpx;color:#282828}.return-list .goodWrapper .totalSum .price{font-size:28rpx;font-weight:bold}.return-list .goodWrapper .iconfont{position:absolute;font-size:109rpx;top:7rpx;right:30rpx;color:#ccc;width:109rpx;height:109rpx;line-height:109rpx}.return-list .goodWrapper .iconfont.powder{color:#f8c1bd}.collectionGoods{background-color:#fff;border-top:1px solid #eee}.collectionGoods .item{margin-left:30rpx;padding-right:30rpx;border-bottom:1px solid #eee;height:180rpx}.collectionGoods .item .pictrue{width:130rpx;height:130rpx}.collectionGoods .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.collectionGoods .item .text{width:535rpx;height:130rpx;font-size:28rpx;color:#282828}.collectionGoods .item .text .infor{width:100%}.collectionGoods .item .text .money{font-size:26rpx}.collectionGoods .item .text .delete{font-size:26rpx;color:#282828;width:114rpx;height:46rpx;border:1px solid #bbb;-webkit-border-radius:4rpx;border-radius:4rpx;text-align:center;line-height:46rpx}.searchGood .search{padding-left:30rpx}.searchGood .search{margin-top:20rpx}.searchGood .search .input{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#f7f7f7;-webkit-border-radius:33rpx;border-radius:33rpx;padding:0 35rpx;height:66rpx}.searchGood .search .input input{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-size:28rpx;margin-left:15rpx}.searchGood .search .input input::-webkit-input-placeholder{color:#bbb}.searchGood .search .input input::-moz-placeholder{color:#bbb}.searchGood .search .input input:-ms-input-placeholder{color:#bbb}.searchGood .search .input input::-ms-input-placeholder{color:#bbb}.searchGood .search .input input::placeholder{color:#bbb}.searchGood .search .input .iconfont{color:#000;font-size:35rpx}.searchGood .search .bnt{width:120rpx;text-align:center;height:66rpx;line-height:66rpx;font-size:30rpx;color:#282828}.searchGood .title{font-size:28rpx;color:#999;margin:50rpx 30rpx 25rpx 30rpx}.searchGood .list{padding-left:10rpx}.searchGood .list .item{font-size:26rpx;color:#454545;padding:0 21rpx;height:60rpx;-webkit-border-radius:3rpx;border-radius:3rpx;line-height:60rpx;border:1px solid #aaa;margin:0 0 20rpx 20rpx}.searchGood .line{border-bottom:1px solid #eee;margin:20rpx 30rpx 0 30rpx}.cash-withdrawal{padding-top:130rpx}.cash-withdrawal .wrapper .list{padding:0 30rpx}.cash-withdrawal .wrapper .list .item{border-bottom:1px solid #eee;height:107rpx;font-size:30rpx;color:#333}.cash-withdrawal .wrapper .list .item .name{width:130rpx}.cash-withdrawal .wrapper .list .item .input{width:505rpx}.cash-withdrawal .wrapper .list .item .input input::-webkit-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input::-moz-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input:-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input::-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .item .input input::placeholder{color:#bbb}.cash-withdrawal .wrapper .list .tip{font-size:26rpx;color:#999;margin-top:25rpx}.cash-withdrawal .wrapper .list .bnt{font-size:32rpx;color:#fff;width:690rpx;height:90rpx;text-align:center;-webkit-border-radius:50rpx;border-radius:50rpx;line-height:90rpx;margin:64rpx auto}.cash-withdrawal .wrapper .list .tip2{font-size:26rpx;color:#999;text-align:center;margin:44rpx 0 20rpx 0}.cash-withdrawal .wrapper .list .value{height:135rpx;line-height:135rpx;border-bottom:1px solid #eee;width:690rpx;margin:0 auto}.cash-withdrawal .wrapper .list .value input{font-size:80rpx;color:#282828;height:135rpx;text-align:center;width:100%}.cash-withdrawal .wrapper .list .value input::-webkit-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input::-moz-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input:-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input::-ms-input-placeholder{color:#bbb}.cash-withdrawal .wrapper .list .value input::placeholder{color:#bbb}.cash-audit{width:710rpx;background-color:#fff;-webkit-border-radius:6rpx;border-radius:6rpx;margin:25rpx auto 0 auto;padding:53rpx 0 58rpx 0;left:50%;margin-left:-355rpx}.cash-audit .pictrue{width:214rpx;height:179rpx;margin:0 auto}.cash-audit .pictrue image{width:100%;height:100%}.cash-audit .tip{font-size:32rpx;color:#282828;margin-top:40rpx;text-align:center;padding:0 40rpx}.cash-audit .time{font-size:26rpx;color:#999;text-align:center;margin-top:15rpx}.cash-audit .bnt{font-size:32rpx;color:#fff;width:500rpx;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;text-align:center;line-height:86rpx;margin:50rpx auto 0 auto}.promoter-order .list .item .title{height:133rpx;padding:0 30rpx;font-size:26rpx;color:#999}.promoter-order .list .item .title .data{font-size:28rpx;color:#282828;margin-bottom:5rpx}.promoter-order .list .item .listn .itenm{background-color:#fff}.promoter-order .list .item .listn .itenm~.itenm{margin-top:12rpx}.promoter-order .list .item .listn .itenm .top{margin-left:30rpx;padding-right:30rpx;border-bottom:1px solid #eee;height:100rpx}.promoter-order .list .item .listn .itenm .top .pictxt{width:320rpx}.promoter-order .list .item .listn .itenm .top .pictxt .text{width:230rpx;font-size:30rpx;color:#282828}.promoter-order .list .item .listn .itenm .top .pictxt .pictrue{width:66rpx;height:66rpx}.promoter-order .list .item .listn .itenm .top .pictxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:3rpx solid #fff;-webkit-box-shadow:0 0 10rpx #aaa;box-shadow:0 0 10rpx #aaa;-moz-box-shadow:0 0 10rpx #aaa;-o-box-shadow:0 0 10rpx #aaa;-webkit-box-sizing:border-box;box-sizing:border-box}.promoter-order .list .item .listn .itenm .top .money{font-size:28rpx}.promoter-order .list .item .listn .itenm .bottom{padding:20rpx 30rpx;font-size:28rpx;color:#666;line-height:1.6}.promoter-order .list .item .listn .itenm .bottom .name{color:#999}.promoter-list .header{padding-bottom:12rpx}.promoter-list .nav{background-color:#fff;height:86rpx;line-height:86rpx;font-size:28rpx;color:#282828;border-bottom:1px solid #eee}.promoter-list .nav .item{height:100%}.promoter-list .nav .item.on{color:#eb3729;border-bottom:5rpx solid #eb3729}.promoter-list .search{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;background-color:#fff;height:86rpx;padding:0 30rpx}.promoter-list .search .input{width:630rpx;height:60rpx;-webkit-border-radius:50rpx;border-radius:50rpx;background-color:#f5f5f5;text-align:center;position:relative}.promoter-list .search .input input{height:100%;font-size:26rpx;width:620rpx;text-align:center}.promoter-list .search .input input::-webkit-input-placeholder{color:#bbb}.promoter-list .search .input input::-moz-placeholder{color:#bbb}.promoter-list .search .input input:-ms-input-placeholder{color:#bbb}.promoter-list .search .input input::-ms-input-placeholder{color:#bbb}.promoter-list .search .input input::placeholder{color:#bbb}.promoter-list .search .input .iconfont{position:absolute;right:28rpx;color:#999;font-size:28rpx;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.promoter-list .search .iconfont{font-size:40rpx;color:#515151}.promoter-list .list .sortNav{background-color:#fff;height:76rpx;border-bottom:1px solid #eee;color:#333;font-size:28rpx}.promoter-list .list .sortNav.on{position:fixed;top:0;left:0;width:100%;z-index:5}.promoter-list .list .sortNav .sortItem{text-align:center;-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1}.promoter-list .list .sortNav .sortItem image{width:24rpx;height:24rpx;margin-left:6rpx;vertical-align:-3rpx}.promoter-list .list .sortList{margin-top:76rpx}.promoter-list .list .item{background-color:#fff;border-bottom:1px solid #eee;height:152rpx;padding:0 30rpx 0 20rpx;font-size:24rpx;color:#666}.promoter-list .list .item .picTxt{width:440rpx}.promoter-list .list .item .picTxt .pictrue{width:106rpx;height:106rpx;-webkit-border-radius:50%;border-radius:50%}.promoter-list .list .item .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:3rpx solid #fff;-webkit-box-shadow:0 0 7rpx #aaa;box-shadow:0 0 7rpx #aaa;-moz-box-shadow:0 0 7rpx #aaa;-o-box-shadow:0 0 7rpx #aaa;-webkit-box-sizing:border-box;box-sizing:border-box}.promoter-list .list .item .picTxt .text{width:304rpx;font-size:24rpx;color:#666}.promoter-list .list .item .picTxt .text .name{font-size:28rpx;color:#333;margin-bottom:13rpx}.promoter-list .list .item .right{width:240rpx;text-align:right;font-size:22rpx;color:#333}.my-promotion .header{background-image:url("https://wx.yixiang.co/static/images/promotionBg.png");background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:375rpx}.my-promotion .header .name{font-size:30rpx;color:#fff;padding-top:57rpx;position:relative}.my-promotion .header .name .record{font-size:26rpx;color:rgba(255,255,255,0.8);position:absolute;right:20rpx}.my-promotion .header .name .record .iconfont{font-size:25rpx;margin-left:10rpx}.my-promotion .header .num{text-align:center;color:#fff;font-size:90rpx;font-family:'GuildfordProBook 5'}.my-promotion .header .profit{padding:0 20rpx;margin-top:33rpx;font-size:24rpx;color:rgba(255,255,255,0.8)}.my-promotion .header .profit .item{min-width:200rpx;text-align:center}.my-promotion .header .profit .item .money{font-size:34rpx;color:#fff}.my-promotion .bnt{font-size:28rpx;color:#fff;width:258rpx;height:68rpx;-webkit-border-radius:50rpx;border-radius:50rpx;text-align:center;line-height:68rpx;margin:-32rpx auto 0 auto}.my-promotion .list{padding:0 20rpx;margin-top:10rpx}.my-promotion .list .item{width:345rpx;height:240rpx;-webkit-border-radius:20rpx;border-radius:20rpx;background-color:#fff;margin-top:20rpx;font-size:30rpx;color:#666}.my-promotion .list .item .iconfont{font-size:70rpx;margin-bottom:20rpx;color:#eb3729}.my-account .wrapper{background-color:#fff;padding:32rpx 0 34rpx 0;margin-bottom:14rpx}.my-account .wrapper .header{width:690rpx;height:330rpx;background-image:-webkit-gradient(linear, left top, right top, from(#eb3729), to(#eb3729));background-image:-webkit-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:-o-linear-gradient(left, #eb3729 0%, #eb3729 100%);background-image:linear-gradient(to right, #eb3729 0%, #eb3729 100%);background-image:-moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%);-webkit-border-radius:16rpx;border-radius:16rpx;margin:0 auto;color:rgba(255,255,255,0.6);font-size:24rpx}.my-account .wrapper .header .headerCon{background-image:url('https://wx.yixiang.co/static/images/accountBg.png');background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100%;height:100%;width:100%;padding:36rpx 0 29rpx 0}.my-account .wrapper .header .headerCon .account{padding:0 35rpx}.my-account .wrapper .header .headerCon .account .assets .money{font-size:72rpx;color:#fff;font-family:'GuildfordProBook 5';margin-top:10rpx;height:75rpx;line-height:75rpx}.my-account .wrapper .header .headerCon .account .recharge{font-size:28rpx;width:150rpx;height:54rpx;-webkit-border-radius:27rpx;border-radius:27rpx;background-color:#fff9f8;text-align:center;line-height:54rpx}.my-account .wrapper .header .headerCon .cumulative{margin-top:46rpx}.my-account .wrapper .header .headerCon .cumulative .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;padding-left:35rpx}.my-account .wrapper .header .headerCon .cumulative .item .money{font-size:48rpx;font-family:'GuildfordProBook 5';color:#fff;margin-top:6rpx}.my-account .wrapper .nav{height:155rpx;border-bottom:1px solid #f5f5f5}.my-account .wrapper .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:26rpx;color:#999}.my-account .wrapper .nav .item .pictrue{width:44rpx;height:44rpx;margin:0 auto;margin-bottom:20rpx}.my-account .wrapper .nav .item .pictrue image{width:100%;height:100%}.my-account .wrapper .advert{padding:0 30rpx;margin-top:30rpx}.my-account .wrapper .advert .item{background-color:#fff6d1;width:332rpx;height:118rpx;-webkit-border-radius:10rpx;border-radius:10rpx;padding:0 27rpx 0 25rpx;font-size:24rpx;color:#e44609}.my-account .wrapper .advert .item.on{background-color:#fff3f3;color:#e96868}.my-account .wrapper .advert .item .pictrue{width:78rpx;height:78rpx}.my-account .wrapper .advert .item .pictrue image{width:100%;height:100%}.my-account .wrapper .advert .item .text .name{font-size:30rpx;font-weight:bold;color:#f33c2b;margin-bottom:7rpx}.my-account .wrapper .advert .item.on .text .name{color:#f64051}.my-account .wrapper .list{padding:0 30rpx}.my-account .wrapper .list .item{margin-top:44rpx}.my-account .wrapper .list .item .picTxt .iconfont{width:82rpx;height:82rpx;-webkit-border-radius:50%;border-radius:50%;background-image:-webkit-gradient(linear, left top, right top, from(#ff9389), to(#f9776b));background-image:-webkit-linear-gradient(left, #ff9389 0%, #f9776b 100%);background-image:-o-linear-gradient(left, #ff9389 0%, #f9776b 100%);background-image:linear-gradient(to right, #ff9389 0%, #f9776b 100%);background-image:-moz-linear-gradient(to right, #ff9389 0%, #f9776b 100%);text-align:center;line-height:82rpx;color:#fff;font-size:40rpx}.my-account .wrapper .list .item .picTxt .iconfont.yellow{background-image:-webkit-gradient(linear, left top, right top, from(#ffccaa), to(#fea060));background-image:-webkit-linear-gradient(left, #ffccaa 0%, #fea060 100%);background-image:-o-linear-gradient(left, #ffccaa 0%, #fea060 100%);background-image:linear-gradient(to right, #ffccaa 0%, #fea060 100%);background-image:-moz-linear-gradient(to right, #ffccaa 0%, #fea060 100%)}.my-account .wrapper .list .item .picTxt .iconfont.green{background-image:-webkit-gradient(linear, left top, right top, from(#a1d67c), to(#9dd074));background-image:-webkit-linear-gradient(left, #a1d67c 0%, #9dd074 100%);background-image:-o-linear-gradient(left, #a1d67c 0%, #9dd074 100%);background-image:linear-gradient(to right, #a1d67c 0%, #9dd074 100%);background-image:-moz-linear-gradient(to right, #a1d67c 0%, #9dd074 100%)}.my-account .wrapper .list .item .picTxt{width:428rpx;font-size:30rpx;color:#282828}.my-account .wrapper .list .item .picTxt .text{width:317rpx}.my-account .wrapper .list .item .picTxt .text .infor{font-size:24rpx;color:#999;margin-top:5rpx}.my-account .wrapper .list .item .bnt{font-size:26rpx;color:#282828;width:156rpx;height:52rpx;border:1px solid #ddd;-webkit-border-radius:26rpx;border-radius:26rpx;text-align:center;line-height:50rpx}.my-account .wrapper .list .item .bnt.end{font-size:26rpx;color:#aaa;background-color:#f2f2f2;border-color:#f2f2f2}.bill-details .nav{background-color:#fff;height:90rpx;width:100%;line-height:90rpx}.bill-details .nav .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:30rpx;color:#282828;height:100%}.bill-details .nav .item.on{color:#e93323;border-bottom:3rpx solid #e93323}.flash-sale .header{width:100%;height:240rpx}.flash-sale .header image{width:100%;height:100%}.flash-sale .whiteFixed{position:fixed;top:0;background-color:#fff;left:0;width:100%;z-index:5}.flash-sale .timeLsit{width:100%;white-space:nowrap;overflow:hidden;height:110rpx}.flash-sale .timeLsit .rush-time{overflow-y:hidden;overflow-x:auto;width:100%;height:150rpx}.flash-sale .timeLsit .item{display:inline-block;font-size:22rpx;color:#282828;width:200rpx;text-align:center;padding:11rpx 0;height:96rpx;background-color:#efc58f}.flash-sale .timeLsit .item~.item{border-left:1px solid #e3b06e}.flash-sale .timeLsit .item .time{font-size:32rpx;font-weight:bold;height:37rpx;line-height:37rpx}.flash-sale .timeLsit .item.on{background-color:#e93323;color:#fff;position:relative}.flash-sale .timeLsit .item.on::before{content:"";width:0;height:0;border-left:8rpx solid transparent;border-right:8rpx solid transparent;border-top:10rpx solid #e93323;position:absolute;bottom:-9rpx;z-index:99;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.flash-sale .countDown{height:92rpx;border-bottom:1px solid #f0f0f0;font-size:28rpx;color:#282828}.flash-sale .countDown .timeTxt{color:#fc4141}.flash-sale .countDown .time{font-size:28rpx;color:#282828}.flash-sale .countDown .styleAll{font-size:28rpx;font-weight:bold;background-color:#ffcfcb;padding:4rpx 7rpx;-webkit-border-radius:3rpx;border-radius:3rpx;color:#fc4141}.flash-sale .list.on{margin-top:202rpx}.flash-sale .list .item{padding:0 30rpx;border-bottom:1px solid #f0f0f0;height:227rpx;position:relative}.flash-sale .list .item .pictrue{width:166rpx;height:166rpx}.flash-sale .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.flash-sale .list .item .text{width:470rpx;font-size:30rpx;color:#333;height:166rpx}.flash-sale .list .item .text .money{font-size:24rpx;color:#282828;margin-top:-13rpx}.flash-sale .list .item .text .money .num{font-size:34rpx;font-weight:bold}.flash-sale .list .item .text .progress{overflow:hidden;background-color:#fff;width:260rpx;-webkit-border-radius:20rpx;border-radius:20rpx;height:34rpx;position:relative}.flash-sale .list .item .text .progress .bg-red{width:0;height:100%;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;background-color:#ffe3e1}.flash-sale .list .item .text .progress .piece{position:absolute;left:0;right:0;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);top:49%;font-size:22rpx;word-wrap:normal;text-align:center}.flash-sale .list .item .grab{font-size:28rpx;color:#fff;width:140rpx;height:54rpx;-webkit-border-radius:4rpx;border-radius:4rpx;text-align:center;line-height:54rpx;position:absolute;right:30rpx;bottom:30rpx}.product-con .nav{-webkit-box-sizing:border-box;box-sizing:border-box;background:url('https://wx.yixiang.co/static/images/rushBuy.jpg') #fc4141 no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:100rpx;padding:0 30rpx}.product-con .nav .money{font-size:28rpx;color:#fff}.product-con .nav .money .num{font-size:48rpx}.product-con .nav .money .y-money{font-size:26rpx;margin-left:10rpx;text-decoration:line-through}.product-con .nav .times{font-size:20rpx;color:#fff;text-align:center;margin-bottom:4rpx}.product-con .nav .times .time{margin-top:7rpx}.product-con .nav .times .time .styleAll{padding:0 7rpx;font-size:22rpx;color:#ff3d3d;background-color:#fff;-webkit-border-radius:2rpx;border-radius:2rpx}.product-con .nav .iconfont{color:#fff;font-size:30rpx;margin-left:20rpx}.product-con .wrapperRush{padding:32rpx 30rpx;background-color:#fff}.product-con .wrapperRush .introduce .infor{width:570rpx;font-size:32rpx;font-weight:bold}.product-con .wrapperRush .introduce .iconfont{font-size:37rpx;color:#515151}.product-con .wrapperRush .label{margin:18rpx 0 0 0;font-size:24rpx;color:#82848f}.product-con .wrapperRush .label .stock{width:255rpx;margin-right:28rpx}.product-con .footerRush{position:fixed;bottom:0;width:100%;height:100rpx;background-color:#fff;font-size:18rpx;color:#666;z-index:99}.product-con .footerRush .customerSer{width:14%;font-size:20rpx;color:#666}.product-con .footerRush .bnt{width:100%;text-align:center;line-height:100rpx;height:100%;color:#fff;font-size:30rpx}.newsList .swiperNews{width:690rpx;height:367rpx;margin:30rpx auto 0 auto}.newsList .swiperNews .swiper-slide{width:100%;height:330rpx}.newsList .swiperNews .slide-image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.newsList .swiperNews .swiper-pagination-bullet{width:12rpx;height:12rpx;-webkit-border-radius:0;border-radius:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 100%;transform-origin:0 100%;-ms-transform-origin:0 100%;-o-transform-origin:0 100%;background-color:#d1d1d1;opacity:1;margin:0 10rpx}.newsList .swiperNews .swiper-pagination-bullet-active{background-color:#666666;border:0}.newsList .swiperNews .swiper-pagination{bottom:-7rpx;width:100%}.newsList .nav{padding:0 30rpx;width:100%;height:105rpx;overflow:hidden;background-color:#fff}.newsList .nav.on{position:fixed;top:0;left:0;width:100%;z-index:5}.newsList .nav .scrollNav{white-space:nowrap;overflow-y:hidden;overflow-x:auto;width:100%}.newsList .nav .item{display:inline-block;font-size:32rpx;color:#999;margin-top:40rpx}.newsList .nav .item.on{color:#282828}.newsList .nav .item~.item{margin-left:46rpx}.newsList .nav .item .line{width:24rpx;height:4rpx;-webkit-border-radius:2rpx;border-radius:2rpx;margin:10rpx auto 0 auto}.newsList .list.on{margin-top:105rpx}.newsList .list .item{margin:0 30rpx;border-bottom:1px solid #f0f0f0;padding:35rpx 0}.newsList .list .item .pictrue{width:250rpx;height:156rpx}.newsList .list .item .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.newsList .list .item .text{width:420rpx;height:156rpx;font-size:24rpx;color:#999}.newsList .list .item .text .name{font-size:30rpx;color:#282828}.newsList .list .item .picList .pictrue{width:335rpx;height:210rpx;margin-top:30rpx}.newsList .list .item .picList.on .pictrue{width:217rpx;height:136rpx}.newsList .list .item .picList .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.newsList .list .item .time{text-align:right;font-size:24rpx;color:#999;margin-top:22rpx}.newsList .van-tabs__wrap{top:0 !important}.newsDetail .title{padding:0 30rpx;font-size:34rpx;color:#282828;font-weight:bold;margin:45rpx 0 23rpx 0;line-height:1.5}.newsDetail .list{margin:0 30rpx;border-bottom:1px solid #eee;padding-bottom:25rpx}.newsDetail .list .label{font-size:24rpx;height:38rpx;-webkit-border-radius:3rpx;border-radius:3rpx;text-align:center;line-height:36rpx;padding:0 10rpx;max-width:190rpx;width:unset}.newsDetail .list .item{margin-left:27rpx;font-size:24rpx;color:#999}.newsDetail .list .item .iconfont{font-size:28rpx;margin-right:10rpx}.newsDetail .list .item .iconfont.icon-shenhezhong{font-size:26rpx}.newsDetail .conter{padding:0 30rpx;font-size:30rpx;color:#333;line-height:1.8;padding-top:35rpx}.newsDetail .conter image{width:100%;display:block}.commission-details .promoterHeader .headerCon .money{font-size:36rpx}.commission-details .promoterHeader .headerCon .money .num{font-family:'GuildfordProBook 5'}.register{width:100%;height:100vh;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.register .whiteBg{padding:0 60rpx}.register .whiteBg .title{line-height:2em;font-size:36rpx;color:#282828;text-align:left;font-weight:bold;margin-top:100rpx;margin-bottom:50rpx}.register .whiteBg .title .item~.item{margin-left:85rpx}.register .whiteBg .title .item{color:#999999;border-bottom:5rpx solid #fff;padding-bottom:10rpx}.register .whiteBg .title .item.on{color:#282828;border-bottom-color:#f35749}.register .whiteBg .list .item{border-bottom:1px solid #cccccc;padding:30rpx 0 30rpx 0rpx;position:relative}.register .whiteBg .list .item .name{font-size:26rpx;color:#2d3342;margin-bottom:27rpx;text-align:left}.register .whiteBg .list .item .icon{font-size:35rpx;margin-right:32rpx}.register .whiteBg .list .item input{font-size:33rpx;width:100%}.register .whiteBg .list .item input::-webkit-input-placeholder{color:#cccccc}.register .whiteBg .list .item input::-moz-placeholder{color:#cccccc}.register .whiteBg .list .item input:-ms-input-placeholder{color:#cccccc}.register .whiteBg .list .item input::-ms-input-placeholder{color:#cccccc}.register .whiteBg .list .item input::placeholder{color:#cccccc}.register .whiteBg .list .item .codeIput{width:250rpx}.register .whiteBg .list .item .code{position:absolute;width:150rpx;height:50rpx;background-color:#f35446;-webkit-border-radius:30rpx;border-radius:30rpx;color:#fff;line-height:50rpx;text-align:center;bottom:17rpx;right:0;font-size:25rpx}.register .whiteBg .list .item .code.on{background-color:#bbbbbb}.register .whiteBg .list .forgetPwd{text-align:right;font-size:28rpx;color:#cccccc;margin-top:20rpx}.register .whiteBg .list .forgetPwd .iconfont{font-size:30rpx;margin-right:10rpx;vertical-align:middle}.register .whiteBg .logon{font-size:34rpx;color:#fff;font-weight:bold;height:86rpx;-webkit-border-radius:43rpx;border-radius:43rpx;background:-webkit-gradient(linear, left top, right top, from(#f35447), to(#ff8e3c));background:-webkit-linear-gradient(left, #f35447 0%, #ff8e3c 100%);background:-o-linear-gradient(left, #f35447 0%, #ff8e3c 100%);background:linear-gradient(to right, #f35447 0%, #ff8e3c 100%);background:-moz-linear-gradient(to right, #f35447 0%, #ff8e3c 100%);text-align:center;line-height:86rpx;margin-top:47rpx}.register .whiteBg .tip{height:110rpx;text-align:center;line-height:105rpx;font-size:30rpx;color:#cccccc}.register .bottom{background-repeat:no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:620rpx;height:36rpx;margin:0 auto}.productSort{background:#fff}.productSort .header{width:100%;height:96rpx;background-color:#fff;position:fixed;left:0;right:0;top:88rpx;top:0;z-index:9}.productSort .header .input{width:700rpx;height:60rpx;background-color:#f5f5f5;-webkit-border-radius:50rpx;border-radius:50rpx;padding:0 25rpx}.productSort .header .input .iconfont{font-size:35rpx;color:#555}.productSort .header .input input{font-size:26rpx;height:100%;width:597rpx}.productSort .header .input input::-webkit-input-placeholder{color:#999}.productSort .header .input input::-moz-placeholder{color:#999}.productSort .header .input input:-ms-input-placeholder{color:#999}.productSort .header .input input::-ms-input-placeholder{color:#999}.productSort .header .input input::placeholder{color:#999}.productSort .aside{position:fixed;width:180rpx;left:0;top:96rpx;bottom:100rpx;background-color:#f7f7f7;overflow-y:auto;overflow-x:hidden;overflow-scrolling:touch}.productSort .aside .item{height:80rpx;width:100%;font-size:26rpx;color:#424242}.productSort .aside .item.on{background-color:#fff;border-left:4rpx solid #eb3729;width:100%;text-align:center;color:#eb3729;font-weight:bold}.productSort .conter{margin-left:180rpx;padding:0 14rpx;margin-top:96rpx}.productSort .conter .listw{padding-top:20rpx}.productSort .conter .listw .title{height:90rpx}.productSort .conter .listw .title .line{width:100rpx;height:2rpx;background-color:#999}.productSort .conter .listw .title .name{font-size:28rpx;color:#333;margin:0 30rpx;font-weight:bold}.productSort .conter .list{-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap}.productSort .conter .list .item{width:177rpx;margin-top:26rpx}.productSort .conter .list .item .picture{width:120rpx;height:120rpx;-webkit-border-radius:50%;border-radius:50%}.productSort .conter .list .item .picture image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.productSort .conter .list .item .name{font-size:24rpx;color:#333;height:56rpx;line-height:56rpx;width:120rpx;text-align:center}.home{position:fixed;top:780rpx;color:white;text-align:center;z-index:33;right:10rpx}.home .homeCon{overflow:hidden;width:86rpx;-webkit-border-radius:50rpx;border-radius:50rpx;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;opacity:0;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);height:0;color:#e93323}.home .homeCon.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);height:300rpx;padding:34rpx 0;margin-bottom:20rpx}.home .homeCon .iconfont{font-size:48rpx;color:#fff;display:inline-block;height:90rpx;margin:0 auto}.home .pictrue{width:86rpx;height:86rpx;-webkit-border-radius:50%;border-radius:50%}.home .pictrue .image{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%}.pos-order-goods{padding:0 30rpx;background-color:#fff}.pos-order-goods .goods{height:185rpx}.pos-order-goods .goods~.goods{border-top:1px dashed #e5e5e5}.pos-order-goods .goods .picTxt{width:515rpx}.pos-order-goods .goods .picTxt .pictrue{width:130rpx;height:130rpx}.pos-order-goods .goods .picTxt .pictrue image{width:100%;height:100%;-webkit-border-radius:6rpx;border-radius:6rpx}.pos-order-goods .goods .picTxt .text{width:365rpx;height:130rpx}.pos-order-goods .goods .picTxt .text .info{font-size:28rpx;color:#282828}.pos-order-goods .goods .picTxt .text .attr{font-size:20rpx;color:#999}.pos-order-goods .goods .money{width:164rpx;text-align:right;font-size:28rpx}.pos-order-goods .goods .money .x-money{color:#282828}.pos-order-goods .goods .money .num{color:#ff9600;margin:5rpx 0}.pos-order-goods .goods .money .y-money{color:#999;text-decoration:line-through}.public-total{font-size:28rpx;color:#282828;border-top:1px solid #eee;height:92rpx;line-height:92rpx;text-align:right;padding:0 30rpx;background-color:#fff}.public-total .money{color:#ff4c3c}.priceChange{position:fixed;width:580rpx;height:670rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;top:50%;left:50%;margin-left:-290rpx;margin-top:-335rpx;z-index:99;-webkit-transition:all .3s ease-in-out 0s;-o-transition:all .3s ease-in-out 0s;transition:all .3s ease-in-out 0s;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);opacity:0}.priceChange.on{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.priceChange .priceTitle{background:url("https://wx.yixiang.co/static/images/pricetitle.jpg") no-repeat;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:160rpx;-webkit-border-radius:10rpx 10rpx 0 0;border-radius:10rpx 10rpx 0 0;text-align:center;font-size:40rpx;color:#fff;line-height:160rpx;position:relative}.priceChange .priceTitle .iconfont{position:absolute;font-size:40rpx;right:26rpx;top:23rpx;width:40rpx;height:40rpx;line-height:40rpx}.priceChange .listChange{padding:0 40rpx}.priceChange .listChange .item{height:103rpx;border-bottom:1px solid #e3e3e3;font-size:32rpx;color:#333}.priceChange .listChange .item .money{color:#666;width:300rpx;text-align:right}.priceChange .listChange .item .money .iconfont{font-size:32rpx;margin-left:20rpx}.priceChange .listChange .item .money input{width:100%;height:100%;text-align:right;color:#ccc}.priceChange .listChange .item .money input.on{color:#666}.priceChange .modify{font-size:32rpx;color:#fff;width:490rpx;height:90rpx;text-align:center;line-height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;background-color:#2291f8;margin:53rpx auto 0 auto}.priceChange .modify1{font-size:32rpx;color:#312b2b;width:490rpx;height:90rpx;text-align:center;line-height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;background-color:#eee;margin:30rpx auto 0 auto}.public-wrapper .title{font-size:30rpx;color:#282828;padding:0 30rpx;margin-bottom:20rpx}.public-wrapper .title .iconfont{color:#2291f8;font-size:40rpx;margin-right:13rpx;vertical-align:middle}.public-wrapper{margin:18rpx auto 0 auto;width:690rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;padding-top:25rpx}.public-wrapper .nav{padding:0 30rpx;height:70rpx;line-height:70rpx;font-size:24rpx;color:#999}.public-wrapper .data{width:210rpx;text-align:left}.public-wrapper .browse{width:192rpx;text-align:right}.public-wrapper .turnover{width:227rpx;text-align:right}.public-wrapper .conter{padding:0 30rpx}.public-wrapper .conter .item{border-bottom:1px solid #f7f7f7;height:70rpx;font-size:24rpx}.public-wrapper .conter .item .turnover{color:#d84242}.pos-order-list .nav{width:100%;height:96rpx;background-color:#fff;font-size:30rpx;color:#282828;position:fixed;top:0;left:0}.pos-order-list .nav .item.on{color:#2291f8}.pos-order-list .list{margin-top:120rpx}.pos-order-list .list .item{background-color:#fff;width:100%}.pos-order-list .list .item~.item{margin-top:24rpx}.pos-order-list .list .item .order-num{border-bottom:1px solid #eee;font-size:26rpx;font-weight:bold;color:#282828;padding:20rpx 30rpx;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.pos-order-list .list .item .order-num .time{font-size:26rpx;font-weight:normal;color:#999;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.pos-order-list .list .item .operation{padding:20rpx 30rpx;margin-top:3rpx}.pos-order-list .list .item .operation .more{position:relative}.pos-order-list .list .item .operation .icon-gengduo{font-size:50rpx;color:#aaa}.pos-order-list .list .item .operation .order .arrow{width:0;height:0;border-left:11rpx solid transparent;border-right:11rpx solid transparent;border-top:20rpx solid #e5e5e5;position:absolute;left:15rpx;bottom:-18rpx}.pos-order-list .list .item .operation .order .arrow:before{content:'';width:0;height:0;border-left:7rpx solid transparent;border-right:7rpx solid transparent;border-top:20rpx solid #fff;position:absolute;left:-7rpx;bottom:0}.pos-order-list .list .item .operation .order{width:200rpx;background-color:#fff;border:1px solid #eee;-webkit-border-radius:10rpx;border-radius:10rpx;position:absolute;top:-100rpx;z-index:9}.pos-order-list .list .item .operation .order .items{height:77rpx;line-height:77rpx;text-align:center}.pos-order-list .list .item .operation .order .items~.items{border-top:1px solid #f5f5f5}.pos-order-list .list .item .operation .bnt{font-size:28rpx;color:#5c5c5c;width:170rpx;height:60rpx;-webkit-border-radius:30rpx;border-radius:30rpx;border:1px solid #bbb;text-align:center;line-height:60rpx}.pos-order-list .list .item .operation .bnt~.bnt{margin-left:14rpx}.pos-order-details .header{background:-webkit-gradient(linear, left top, right top, from(#2291f8), to(#1cd1dc));background:-webkit-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:-o-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:linear-gradient(to right, #2291f8 0%, #1cd1dc 100%);background:-moz-linear-gradient(to right, #2291f8 0%, #1cd1dc 100%)}.pos-order-details .header .state{font-size:36rpx;color:#fff}.pos-order-details .header .data{margin-left:35rpx;font-size:28rpx}.pos-order-details .header .data .order-num{font-size:30rpx;margin-bottom:8rpx}.pos-order-details .remarks{width:100%;height:86rpx;background-color:#fff;padding:0 30rpx}.pos-order-details .remarks .iconfont{font-size:40rpx;color:#2a7efb}.pos-order-details .remarks input{width:630rpx;height:100%;font-size:30rpx}.pos-order-details .remarks input::-webkit-input-placeholder{color:#666}.pos-order-details .remarks input::-moz-placeholder{color:#666}.pos-order-details .remarks input:-ms-input-placeholder{color:#666}.pos-order-details .remarks input::-ms-input-placeholder{color:#666}.pos-order-details .remarks input::placeholder{color:#666}.pos-order-details .orderingUser{font-size:26rpx;color:#282828;padding:0 30rpx;height:0rpx;background-color:#fff;margin-top:16rpx;border-bottom:1px solid #f5f5f5}.pos-order-details .orderingUser .iconfont{font-size:40rpx;color:#2a7efb;margin-right:15rpx}.pos-order-details .address{margin-top:0}.pos-order-details .pos-order-goods{margin-top:17rpx}.pos-order-details .footer .more{font-size:27rpx;color:#aaa;width:100rpx;height:64rpx;text-align:center;line-height:64rpx;margin-right:25rpx;position:relative}.pos-order-details .footer .delivery{background:-webkit-gradient(linear, left top, right top, from(#2291f8), to(#1cd1dc));background:-webkit-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:-o-linear-gradient(left, #2291f8 0%, #1cd1dc 100%);background:linear-gradient(to right, #2291f8 0%, #1cd1dc 100%);background:-moz-linear-gradient(to right, #2291f8 0%, #1cd1dc 100%)}.pos-order-details .footer .more .order .arrow{width:0;height:0;border-left:11rpx solid transparent;border-right:11rpx solid transparent;border-top:20rpx solid #e5e5e5;position:absolute;left:15rpx;bottom:-18rpx}.pos-order-details .footer .more .order .arrow:before{content:'';width:0;height:0;border-left:9rpx solid transparent;border-right:9rpx solid transparent;border-top:19rpx solid #fff;position:absolute;left:-10rpx;bottom:0}.pos-order-details .footer .more .order{width:200rpx;background-color:#fff;border:1px solid #eee;-webkit-border-radius:10rpx;border-radius:10rpx;position:absolute;top:-200rpx;z-index:9}.pos-order-details .footer .more .order .item{height:77rpx;line-height:77rpx}.pos-order-details .footer .more .order .item~.item{border-top:1px solid #f5f5f5}.pos-order-details .footer .more .moreName{width:100%;height:100%}.deliver-goods header{width:100%;background-color:#fff;margin-top:10rpx}.deliver-goods header .order-num{padding:0 30rpx;border-bottom:1px solid #f5f5f5;height:67rpx}.deliver-goods header .order-num .num{width:430rpx;font-size:26rpx;color:#282828;position:relative}.deliver-goods header .order-num .num:after{position:absolute;content:'';width:1px;height:30rpx;background-color:#ddd;top:50%;margin-top:-15rpx;right:0}.deliver-goods header .order-num .name{width:260rpx;font-size:26rpx;color:#282828;text-align:center}.deliver-goods header .order-num .name .iconfont{font-size:35rpx;color:#477ef3;vertical-align:middle;margin-right:10rpx}.deliver-goods header .address{font-size:26rpx;color:#868686;background-color:#fff;padding:30rpx}.deliver-goods header .address .name{font-size:30rpx;color:#282828;margin-bottom:10rpx}.deliver-goods header .address .name .phone{margin-left:40rpx}.deliver-goods header .line{width:100%;height:3rpx}.deliver-goods header .line image{width:100%;height:100%;display:block}.deliver-goods .wrapper{width:100%;background-color:#fff}.deliver-goods .wrapper .item{border-bottom:1px solid #f0f0f0;padding:0 30rpx;height:96rpx;font-size:32rpx;color:#282828;position:relative}.deliver-goods .wrapper .item .mode{width:460rpx;height:100%;text-align:right}.deliver-goods .wrapper .item .mode .iconfont{font-size:30rpx;margin-left:13rpx}.deliver-goods .wrapper .item .mode .goods~.goods{margin-left:30rpx}.deliver-goods .wrapper .item .mode .goods{color:#bbb}.deliver-goods .wrapper .item .mode .goods.on{color:#477ef3}.deliver-goods .wrapper .item .icon-up{position:absolute;font-size:35rpx;color:#2c2c2c;right:30rpx}.deliver-goods .wrapper .item select{direction:rtl;padding-right:60rpx;position:relative;z-index:2}.deliver-goods .wrapper .item input::-webkit-input-placeholder{color:#bbb}.deliver-goods .wrapper .item input::-moz-placeholder{color:#bbb}.deliver-goods .wrapper .item input:-ms-input-placeholder{color:#bbb}.deliver-goods .wrapper .item input::-ms-input-placeholder{color:#bbb}.deliver-goods .wrapper .item input::placeholder{color:#bbb}.deliver-goods .confirm{font-size:32rpx;color:#fff;width:100%;height:100rpx;background-color:#477ef3;text-align:center;line-height:100rpx;position:fixed;bottom:0}.order-index .header{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-background-size:100% 100%;background-size:100% 100%;width:100%;height:302rpx;padding:45rpx 30rpx 0 30rpx;position:relative}.order-index .image{position:absolute;width:100%;left:0;right:0;top:0;z-index:0}.order-index .header:after{position:absolute;left:0;right:0;bottom:-98rpx;z-index:-1;content:'';height:100rpx;width:100%;-webkit-border-radius:0 0 50% 50%;border-radius:0 0 50% 50%}.order-index .header .item{-webkit-box-flex:1;-webkit-flex:1;flex:1;-o-flex:1;-ms-flex:1;text-align:center;font-size:24rpx;color:#fff}.order-index .header .item .num{font-size:40rpx;margin-bottom:7rpx}.order-index .wrapper{position:relative;width:690rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin:-115rpx auto 0 auto;padding-top:25rpx;z-index:99}.order-index .wrapper .title{font-size:30rpx;color:#282828;padding:0 30rpx;margin-bottom:40rpx}.order-index .wrapper .title .iconfont{color:#2291f8;font-size:40rpx;margin-right:13rpx;vertical-align:middle}.order-index .wrapper .list .item{width:33.33%;text-align:center;font-size:24rpx;color:#999;margin-bottom:45rpx}.order-index .wrapper .list .item .num{font-size:40rpx;color:#333}.statistical-page .navs{width:100%;height:96rpx;background-color:#fff;overflow:hidden;line-height:96rpx;position:fixed;top:0;left:0;z-index:9}.statistical-page .navs .list{overflow-y:hidden;overflow-x:auto;white-space:nowrap;width:100%}.statistical-page .navs .item{font-size:32rpx;color:#282828;margin-left:78rpx;display:inline-block}.statistical-page .navs .item.on{color:#2291f8}.statistical-page .navs .item .iconfont{font-size:25rpx;margin-left:13rpx}.statistical-page .wrapper{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin:119rpx auto 0 auto;padding:30rpx 60rpx}.statistical-page .wrapper .title{font-size:30rpx;color:#999;text-align:center}.statistical-page .wrapper .money{font-size:72rpx;color:#fba02a;text-align:center;margin-top:10rpx}.statistical-page .wrapper .increase{font-size:28rpx;color:#999;margin-top:20rpx}.statistical-page .wrapper .increase .red{color:#ff6969}.statistical-page .wrapper .increase .green{color:#1abb1d}.statistical-page .wrapper .increase .iconfont{font-size:23rpx;margin-left:15rpx}.statistical-page .chart{width:690rpx;height:480rpx;background-color:#fff;-webkit-border-radius:10rpx;border-radius:10rpx;margin:23rpx auto 0 auto;padding:25rpx 22rpx 0 22rpx}.statistical-page .chart .company{font-size:26rpx;color:#999}.statistical-page .mc-body{padding-bottom:0}.statistical-page .mc-body tr{background-color:#edf8fe;border-top:1px solid #fff;width:100%}.statistical-page .mc-head-box view{font-size:14px}.statistical-page .mc-range-mode .selected .mc-range-bg{background-color:#a0dcf9}.yd-confirm{background-color:#fff;font-size:unset;width:540rpx;height:250rpx;-webkit-border-radius:40rpx;border-radius:40rpx}.yd-confirm-hd{text-align:center}.yd-confirm-title{color:#030303;font-weight:bold;font-size:36rpx}.yd-confirm-bd{text-align:center;font-size:28rpx;color:#333333}.yd-confirm-ft{line-height:90rpx;margin-top:14px;border-top:1rpx solid #eee}.yd-confirm-ft>a{color:#e93323}.yd-confirm-ft>a.primary{border-left:1rpx solid #eee;color:#e93323}.ChangePassword .phone{font-size:32rpx;font-weight:bold;text-align:center;margin-top:55rpx}.ChangePassword .list{width:580rpx;margin:53rpx auto 0 auto}.ChangePassword .list .item{width:100%;height:110rpx;border-bottom:2rpx solid #f0f0f0}.ChangePassword .list .item input{width:100%;height:100%;font-size:32rpx}.ChangePassword .list .item input::-webkit-input-placeholder{color:#b9b9bc}.ChangePassword .list .item input::-moz-placeholder{color:#b9b9bc}.ChangePassword .list .item input:-ms-input-placeholder{color:#b9b9bc}.ChangePassword .list .item input::-ms-input-placeholder{color:#b9b9bc}.ChangePassword .list .item input::placeholder{color:#b9b9bc}.ChangePassword .list .item input.codeIput{width:340rpx}.ChangePassword .list .item .code{font-size:32rpx}.ChangePassword .list .item .code.on{color:#b9b9bc !important}.ChangePassword .confirmBnt{font-size:32rpx;width:580rpx;height:90rpx;-webkit-border-radius:45rpx;border-radius:45rpx;color:#fff;margin:92rpx auto 0 auto;text-align:center;line-height:90rpx}.posterCanvasWarp{position:relative;width:0;height:0;overflow:hidden}.posterCanvasWarp .posterCanvas{position:absolute;left:0;top:0;width:747px !important;height:1326px !important}.text .name .icon-jingpintuijian,.text .name .icon-xinpin{color:#00f !important}.text .name .icon-shoucang{color:#ea3526 !important}rich-text{width:100%;display:block}rich-text img,rich-text image{display:block;width:100%}.one-t{overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;-webkit-transition:all linear .2s;-o-transition:all linear .2s;transition:all linear .2s}.more-t{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;-webkit-transition:all linear .2s;-o-transition:all linear .2s;transition:all linear .2s}.x-f{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.x-bc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.x-ac{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.x-start{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.x-end{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.x-c{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.y-start{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.y-end{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.y-f{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.y-b{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.y-bc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.mt2{margin-top:2rpx}.mr2{margin-right:2rpx}.mb2{margin-bottom:2rpx}.ml2{margin-left:2rpx}.mx2{margin-left:2rpx;margin-right:2rpx}.my2{margin-top:2rpx;margin-bottom:2rpx}.ma2{margin:2rpx}.mt4{margin-top:4rpx}.mr4{margin-right:4rpx}.mb4{margin-bottom:4rpx}.ml4{margin-left:4rpx}.mx4{margin-left:4rpx;margin-right:4rpx}.my4{margin-top:4rpx;margin-bottom:4rpx}.ma4{margin:4rpx}.mt8{margin-top:8rpx}.mr8{margin-right:8rpx}.mb8{margin-bottom:8rpx}.ml8{margin-left:8rpx}.mx8{margin-left:8rpx;margin-right:8rpx}.my8{margin-top:8rpx;margin-bottom:8rpx}.ma8{margin:8rpx}.mt10{margin-top:10rpx}.mr10{margin-right:10rpx}.mb10{margin-bottom:10rpx}.ml10{margin-left:10rpx}.mx10{margin-left:10rpx;margin-right:10rpx}.my10{margin-top:10rpx;margin-bottom:10rpx}.ma10{margin:10rpx}.mt15{margin-top:15rpx}.mr15{margin-right:15rpx}.mb15{margin-bottom:15rpx}.ml15{margin-left:15rpx}.mx15{margin-left:15rpx;margin-right:15rpx}.my15{margin-top:15rpx;margin-bottom:15rpx}.ma15{margin:15rpx}.mt20{margin-top:20rpx}.mr20{margin-right:20rpx}.mb20{margin-bottom:20rpx}.ml20{margin-left:20rpx}.mx20{margin-left:20rpx;margin-right:20rpx}.my20{margin-top:20rpx;margin-bottom:20rpx}.ma20{margin:20rpx}.mt24{margin-top:24rpx}.mr24{margin-right:24rpx}.mb24{margin-bottom:24rpx}.ml24{margin-left:24rpx}.mx24{margin-left:24rpx;margin-right:24rpx}.my24{margin-top:24rpx;margin-bottom:24rpx}.ma24{margin:24rpx}.mt30{margin-top:30rpx}.mr30{margin-right:30rpx}.mb30{margin-bottom:30rpx}.ml30{margin-left:30rpx}.mx30{margin-left:30rpx;margin-right:30rpx}.my30{margin-top:30rpx;margin-bottom:30rpx}.ma30{margin:30rpx}.pt2{padding-top:2rpx}.pr2{padding-right:2rpx}.pb2{padding-bottom:2rpx}.pl2{padding-left:2rpx}.px2{padding-left:2rpx;padding-right:2rpx}.py2{padding-top:2rpx;padding-bottom:2rpx}.pa2{padding:2rpx}.pt4{padding-top:4rpx}.pr4{padding-right:4rpx}.pb4{padding-bottom:4rpx}.pl4{padding-left:4rpx}.px4{padding-left:4rpx;padding-right:4rpx}.py4{padding-top:4rpx;padding-bottom:4rpx}.pa4{padding:4rpx}.pt8{padding-top:8rpx}.pr8{padding-right:8rpx}.pb8{padding-bottom:8rpx}.pl8{padding-left:8rpx}.px8{padding-left:8rpx;padding-right:8rpx}.py8{padding-top:8rpx;padding-bottom:8rpx}.pa8{padding:8rpx}.pt10{padding-top:10rpx}.pr10{padding-right:10rpx}.pb10{padding-bottom:10rpx}.pl10{padding-left:10rpx}.px10{padding-left:10rpx;padding-right:10rpx}.py10{padding-top:10rpx;padding-bottom:10rpx}.pa10{padding:10rpx}.pt15{padding-top:15rpx}.pr15{padding-right:15rpx}.pb15{padding-bottom:15rpx}.pl15{padding-left:15rpx}.px15{padding-left:15rpx;padding-right:15rpx}.py15{padding-top:15rpx;padding-bottom:15rpx}.pa15{padding:15rpx}.pt20{padding-top:20rpx}.pr20{padding-right:20rpx}.pb20{padding-bottom:20rpx}.pl20{padding-left:20rpx}.px20{padding-left:20rpx;padding-right:20rpx}.py20{padding-top:20rpx;padding-bottom:20rpx}.pa20{padding:20rpx}.pt24{padding-top:24rpx}.pr24{padding-right:24rpx}.pb24{padding-bottom:24rpx}.pl24{padding-left:24rpx}.px24{padding-left:24rpx;padding-right:24rpx}.py24{padding-top:24rpx;padding-bottom:24rpx}.pa24{padding:24rpx}.pt30{padding-top:30rpx}.pr30{padding-right:30rpx}.pb30{padding-bottom:30rpx}.pl30{padding-left:30rpx}.px30{padding-left:30rpx;padding-right:30rpx}.py30{padding-top:30rpx;padding-bottom:30rpx}.pa30{padding:30rpx}.min-goods{width:152rpx;background:#fff}.min-goods .img-box{width:152rpx;height:152rpx;overflow:hidden;position:relative}.min-goods .img-box .tag{position:absolute;left:0;bottom:0rpx;z-index:2;line-height:35rpx;background:-webkit-linear-gradient(318deg, #f3dfb1, #f3dfb1, #ecbe60);background:-o-linear-gradient(318deg, #f3dfb1, #f3dfb1, #ecbe60);background:linear-gradient(132deg, #f3dfb1, #f3dfb1, #ecbe60);-webkit-border-radius:0px 18rpx 18rpx 0px;border-radius:0px 18rpx 18rpx 0px;padding:0 10rpx;font-size:24rpx;font-family:PingFang SC;font-weight:bold;color:#784f06}.min-goods .img-box .img{width:100%;background-color:#ccc}.min-goods .price-box{width:100%;margin-top:10rpx}.min-goods .price-box .seckill-current{font-size:30rpx;font-weight:500;color:#e1212b}.min-goods .price-box .original{font-size:20rpx;font-weight:400;text-decoration:line-through;color:#999;margin-left:14rpx}.min-goods .title{font-size:26rpx}.contacButton{padding:0;background-color:#fff;line-height:25rpx}.contacButton::after{border:0}.footer .icon-shoucang1{color:#eb3729}.ytabs .nav{margin:0 auto;padding:0 30rpx;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.ytabs .nav .item{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;position:relative}.shoppingCart,.user,.container{height:100%} /*# sourceMappingURL=./style.css.map */ \ No newline at end of file diff --git a/assets/css/style.css.map b/assets/css/style.css.map index 9eb2a6e..3865995 100644 --- a/assets/css/style.css.map +++ b/assets/css/style.css.map @@ -1 +1 @@ -{"version":3,"sources":["style.less"],"names":[],"mappings":"AAAA,KACE,kBAAA,CAGF,uDACE,QAAA,CAGF,+BACE,gBACA,UACA,oCACA,AADA,yCACA,AADA,4BACA,kBAAA,CAGF,sCACE,eAAA,CAGF,qCACE,iBAAA,CAGF,QACE,eACA,WACA,cACA,SACA,OACA,sBACA,0BACA,YAAA,CAGF,uBACE,cACA,oBAAA,CAGF,WACE,aAAA,CAGF,mBACE,aAAA,CAGF,cACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,aAAA,CAGF,iBACE,aAAA,CAGF,wBACE,gBACA,aACA,iBAAA,CAGF,gBACE,kBACA,mBACA,qBAAA,CAGF,yBACE,aACA,cACA,iBAAA,CAGF,gCACE,WACA,YACA,2BAAA,kBAAA,CAGF,+BACE,WACA,YACA,2BAAA,kBAAA,CAGF,iCACE,kBACA,UACA,SACA,YACA,aACA,0BAAA,iBAAA,CAGF,2BACE,4BACA,+BAAA,CAGF,6CACE,eAAA,CAGF,sBACE,gBACA,WACA,aACA,eAAA,CAGF,kCACE,eAAA,CAGF,iCACE,gBACA,cACA,iBACA,gBAAA,CAGF,sCACE,mBACA,4BAAA,CAGF,wCACE,YACA,aACA,gBAAA,CAGF,sCACE,gBACA,WACA,mBACA,kBAAA,CAGF,0BACE,kBACA,YACA,YACA,aACA,0BACA,AADA,kBACA,gBACA,YAAA,CAGF,eACE,gBACA,qBAAA,CAGF,qBACE,6BACA,aAAA,CAGF,8BACE,aACA,aAAA,CAGF,qCACE,WACA,YACA,2BAAA,kBAAA,CAGF,2BACE,gBACA,WACA,aACA,eAAA,CAGF,iCACE,gBACA,UAAA,CAGF,qCACE,sBAAA,CAGF,+CAEE,aACA,kBACA,gBACA,cACA,4CAAA,mCAAA,CAGF,oDACE,eAAA,CAGF,kCACE,4BAAA,CAGF,WACE,qBAAA,CAGF,kBACE,cACA,gBACA,aAAA,CAGF,wBACE,cAAA,CAGF,4BACE,iBACA,cACA,aACA,iBAAA,CAGF,qCACE,iCAAW,AAAX,6BAAW,AAAX,wBAAW,CAGb,0BACE,eAAA,CAGF,gCACE,aACA,mBAAA,CAGF,yCACE,WACA,aAAA,CAGF,gDACE,WACA,YACA,2BAAA,kBAAA,CAGF,sCACE,gBACA,cACA,gBAAA,CAGF,uCACE,gBACA,eAAA,CAGF,4CACE,eAAA,CAGF,aACE,iBAAA,CAGF,wBACE,aACA,cACA,wBAAA,CAGF,+BACE,WACA,WAAA,CAIF,YACE,aAAA,CAGF,mBACE,aAAA,CAIF,yBACE,WACA,WAAA,CAGF,mBACE,kBACA,sBACA,aACA,gBACA,2BACA,AADA,mBACA,YACA,aACA,kBACA,gBACA,cACA,SAAA,CAIF,+BACE,sBACA,oBAAA,CAGF,6CACE,4BAAA,CAGF,yCACE,gBACA,cACA,aACA,eAAA,CAGF,kDACE,YACA,aACA,kBAAA,CAGF,yDACE,WACA,YACA,0BAAA,iBAAA,CAGF,+CACE,iBACA,kBAAA,CAGF,qCACE,gBACA,cACA,eAAA,CAGF,+CACE,gBACA,cACA,iBACA,eAAA,CAGF,wCACE,wBACA,gBAAA,CAGF,iDACE,aACA,cACA,sBAAA,CAGF,wDACE,WACA,WAAA,CAGF,sCACE,gBACA,cACA,yBACA,2BACA,AADA,mBACA,2BACA,cACA,iBAAA,CAGF,8CACE,WACA,QACA,SACA,oCACA,qCACA,kCACA,kBACA,WACA,WAAA,CAKF,aACE,gBACA,iBACA,8BAAA,qBAAA,CAGF,mBACE,WACA,cACA,mBAAA,CAGF,0BACE,wEACA,4BACA,kCACA,AADA,0BACA,aACA,YACA,WACA,gBACA,iBACA,kBACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BACA,AADA,6BACA,AADA,8BACA,AADA,0BACA,AADA,sBACA,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,wBAAA,+BAAA,qBAAA,sBAAA,CAGF,oCACE,uEAAsB,CAGxB,+BACE,eAAA,CAGF,yBACE,aACA,wBACA,sBACA,8BAAA,qBAAA,CAGF,oCACE,gBACA,cACA,aACA,kBACA,+BAAA,CAGF,+BACE,gBACA,WACA,YAAA,CAGF,oCACE,aACA,aACA,4BACA,AADA,oBACA,gBACA,WACA,kBACA,iBAAA,CAGF,yCACE,qBAAA,CAGF,uBACE,YACA,aACA,kBACA,gBACA,8BACA,AADA,sBACA,mBACA,0BACA,UACA,4BACA,AADA,oBACA,2BACA,cACA,kBAAA,CAGF,sBACE,yBACA,0BAAA,CAIF,oBACE,eACA,SACA,OACA,WACA,yBACA,sCACA,AADA,8BACA,YACA,iDACA,yDACA,sDACA,oDACA,kCACA,0CACA,sCACA,uCACA,oCAAc,CAGhB,uBACE,+BACA,uCACA,mCACA,oCACA,iCAAc,CAGhB,2BACE,cACA,WACA,kBACA,mBACA,gBACA,iBACA,kBACA,UAAA,CAGF,qCACE,kBACA,YACA,QACA,mCACA,AADA,+BACA,AADA,2BACA,gBACA,cACA,kBAAA,CAGF,iCACE,mBACA,cACA,aAAA,CAGF,6BACE,aACA,cACA,wBAAA,CAGF,oCACE,WACA,WAAA,CAIF,gBACE,eACA,SACA,WACA,OACA,sBACA,WACA,sCACA,AADA,8BACA,sBACA,0CACA,AADA,kCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,mBACE,uCAAW,AAAX,8BAAW,CAGb,yBACE,yBACA,iBACA,iBAAA,CAGF,kCACE,aACA,aAAA,CAGF,yCACE,WACA,YACA,4BAAA,mBAAA,CAGF,+BACE,aACA,gBACA,aAAA,CAGF,sCACE,gBACA,gBAAA,CAGF,2CACE,eAAA,CAGF,6CACE,WACA,iBAAA,CAGF,mCACE,kBACA,YACA,UACA,gBACA,aAAA,CAGF,gCACE,kBACA,cACA,gBAAA,CAGF,4CACE,gBAAA,CAGF,6CACE,gBACA,WACA,eAAA,CAGF,6CACE,uBAAA,CAGF,oDACE,sBACA,gBACA,cACA,mBACA,2BACA,AADA,mBACA,sBAAA,CAGF,uDACE,WACA,yBACA,oBAAA,CAGF,sBACE,iBACA,eAAA,CAGF,6BACE,gBACA,UAAA,CAGF,8BACE,aACA,gBAAA,CAGF,oCACE,yBACA,YACA,kBACA,YACA,kBACA,cACA,eAAA,CAGF,sCACE,eACA,oCACA,AADA,4BACA,iBAAA,CAGF,yCACE,qBACA,aAAA,CAGF,oCACE,cACA,oCACA,AADA,4BACA,iBAAA,CAGF,uCACE,qBACA,aAAA,CAGF,mCACE,cACA,eAAA,CAIF,iBACE,eACA,WACA,cACA,UACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,oBACE,2BACA,AADA,uBACA,AADA,mBACA,SAAA,CAGF,2BACE,YACA,aACA,0BACA,AADA,kBACA,sBACA,gBACA,WACA,cACA,iBAAA,CAGF,uBACE,WACA,aACA,sBACA,aAAA,CAGF,8BACE,aACA,cACA,iBAAA,CAGF,qCACE,WACA,WAAA,CAGF,oCACE,kBACA,UACA,gBACA,WACA,iBAAA,CAGF,2CACE,gBACA,gBAAA,CAGF,kDACE,eAAA,CAGF,yCACE,gBACA,UAAA,CAGF,8CACE,gBACA,WACA,iBACA,aACA,iBAAA,CAIF,YACE,sBACA,gBAAA,CAGF,mBACE,8BAEA,AAFA,sBAEA,WACA,aACA,gBACA,8BACA,gBACA,cACA,iBAAA,CAGF,mBACE,kBACA,oBACA,iCACA,aAAA,CAGF,4BACE,aACA,aAAA,CAGF,mCACE,WACA,YACA,2BAAA,kBAAA,CAGF,yBACE,aACA,iBAAA,CAGF,+BACE,gBACA,cACA,YAAA,CAGF,8BACE,gBACA,aAAA,CAGF,+BACE,gBACA,cACA,eAAA,CAGF,gCACE,gBACA,gBAAA,CAGF,mCACE,kBACA,aACA,aACA,yBACA,cACA,2BACA,AADA,mBACA,kBACA,kBACA,QACA,aAAA,CAGF,iDACE,gBACA,WACA,yBACA,oBAAA,CAIF,gBACE,sBACA,eACA,SACA,OACA,WACA,WACA,0CACA,AADA,kCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,mBACE,uCAAW,AAAX,8BAAW,CAGb,uBACE,gBACA,iBACA,kBACA,cACA,mBACA,kBACA,UAAA,CAGF,iCACE,kBACA,YACA,cACA,eAAA,CAGF,sBACE,kBACA,gBACA,iBAAA,CAGF,4BACE,kBACA,oBACA,6BACA,cACA,gBACA,UAAA,CAGF,sCACE,gBACA,aAAA,CAGF,oDACE,gBACA,UAAA,CAGF,wCACE,YAAA,CAGF,8CACE,gBACA,iBACA,cACA,kBAAA,CAGF,qDACE,iBAAA,CAGF,4BACE,gBACA,iBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAGF,yBACE,aACA,cACA,iBAAA,CAGF,gCACE,WACA,WAAA,CAIF,QACE,aAAA,CAGF,qBACE,WACA,WAAA,CAGF,2BACE,iBACA,oBACA,aACA,UAAA,CAGF,kCACE,YACA,aACA,uBACA,0BACA,AADA,kBACA,+BACA,SAAA,CAGF,4DACE,iBAAA,CAGF,yCACE,qBACA,wBAAA,CAIF,YACE,sBACA,mBAAA,CAGF,qBACE,aACA,aAAA,CAGF,4BACE,WACA,YACA,2BAAA,kBAAA,CAGF,kBACE,aACA,gBACA,UAAA,CAGF,wBACE,aACA,aAAA,CAGF,yBACE,gBAAA,CAGF,8BACE,eAAA,CAIF,gBACE,WACA,aAAA,CAGF,2BACE,WACA,YACA,wBACA,gBACA,WACA,4EACA,4BACA,kCAAA,yBAAA,CAGF,iCACE,kBAAA,CAGF,gCACE,eAAA,CAGF,qCACE,gBAAA,CAIF,eACE,8EACA,4BACA,kCACA,AADA,0BACA,aACA,cACA,eACA,QACA,WACA,SACA,oBACA,2CACA,AADA,mCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,kBACE,uCAAW,AAAX,8BAAW,CAGb,8BACE,aACA,wBACA,cACA,aAAA,CAGF,oCACE,WACA,cACA,sBACA,kBACA,mBAAA,CAGF,2CACE,WACA,kBACA,YACA,aACA,0BACA,AADA,kBACA,yBACA,WACA,SACA,mBAAA,CAGF,4CACE,WACA,kBACA,YACA,aACA,0BACA,AADA,kBACA,yBACA,WACA,MACA,gBAAA,CAGF,2CACE,aACA,6BACA,YACA,kBACA,mBACA,gBACA,gBAAA,CAGF,gDACE,eAAA,CAGF,0CACE,aACA,gBACA,WACA,eAAA,CAGF,gDACE,gBACA,cACA,iBACA,kBAAA,CAGF,oBACE,+EACA,4BACA,kCACA,AADA,0BACA,aACA,cACA,eACA,SACA,QACA,yBAAA,CAGF,yBACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,yBACA,kBACA,kBACA,iBACA,wBAAA,CAGF,8BACE,WACA,gBACA,kBACA,gBAAA,CAIF,eACE,aACA,WACA,gBACA,8BAAA,qBAAA,CAIF,qBACE,aACA,aACA,kBAAA,CAGF,2BACE,WACA,YACA,aAAA,CAGF,uBAEE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,8BACA,AADA,sBACA,aACA,yBACA,4BACA,AADA,oBACA,gBACA,gBACA,UAAA,CAGF,mBACE,YACA,aACA,gBACA,kBACA,kBAAA,CAGF,yBACE,YACA,YAAA,CAIF,iCACE,gBACA,kBAAA,CAGF,eACE,aAAA,CAIF,sBACE,aAAA,CAIF,qBACE,WACA,aAAA,CAIF,kCACE,WAAA,CAGF,yCACE,YACA,YACA,2BACA,AADA,mBACA,sBACA,UAAA,CAGF,gDACE,SAAA,CAGF,YACE,iBAAA,CAGF,kBACE,UACA,kBACA,gBACA,mBAAA,CAGF,2BACE,YACA,aACA,wBAAA,CAGF,iCACE,WACA,YACA,0BAAA,iBAAA,CAGF,aACE,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,aACA,6BACA,gBACA,yCACA,AADA,iCACA,sCACA,oCACA,kBAAA,CAGF,sBACE,YACA,aACA,4BACA,oBACA,+BACA,AADA,uBACA,4BACA,kBAAA,CAGF,4BACE,WACA,YACA,aAAA,CAGF,yBACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,gBACA,YAAA,CAGF,yCACE,aACA,UAAA,CAGF,uCACE,aACA,UAAA,CAGF,oDACE,aACA,UAAA,CAGF,+BACE,aACA,YAAA,CAGF,sCACE,gBACA,cACA,YACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,yBAAA,CAGF,0CACE,aACA,gBACA,UAAA,CAGF,mCACE,gBACA,UAAA,CAGF,oBACE,aAAA,CAGF,8BACE,aACA,cACA,iBAAA,CAGF,oCACE,WACA,YACA,2BAAA,kBAAA,CAGF,oCACE,kBACA,UACA,UAAA,CAGF,0BACE,gBACA,UAAA,CAGF,2BACE,gBACA,4BACA,eAAA,CAGF,0BACE,cACA,YAAA,CAGF,0BACE,WACA,cACA,iBAAA,CAGF,gCACE,WACA,WAAA,CAGF,gCACE,kBACA,UACA,UAAA,CAGF,uBACE,0BACA,kBACA,cAAA,CAEA,iCACE,QAAA,CAIJ,6BACE,YAAA,CAGF,0BACE,mBAAA,CAGF,6BACE,gBACA,WACA,aACA,eAAA,CAGF,0CACE,wBAAA,+BAAA,qBAAA,sBAAA,CAGF,mCACE,cACA,gBACA,iBACA,mBACA,kBACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBAAA,2BAAA,sBAAA,kBAAA,CAGF,6CACE,kBAAA,CAGF,wCACE,kBACA,SACA,YACA,gBACA,gBAAA,CAGF,6BACE,gBACA,UAAA,CAGF,uCACE,iBACA,eAAA,CAGF,gCACE,mBACA,iBACA,4BACA,eAAA,CAGF,8CACE,aACA,qBACA,mBACA,iCACA,6CACA,AADA,qCACA,0CACA,uCAAA,CAGF,8DACE,gCAAA,CAGF,gEACE,gCAAA,CAGF,gEACE,cAAA,CAGF,uDACE,WACA,aAAA,CAGF,6DACE,WACA,YACA,oCAAA,2BAAA,CAGF,wDACE,gBACA,cACA,kBACA,aACA,kBACA,yBACA,gBACA,aACA,eAAA,CAGF,0BACE,aACA,cACA,wBAAA,CAGF,0BACE,aACA,cACA,wBAAA,CAGF,gCACE,WACA,aAAA,CAGF,6CACE,aACA,UAAA,CAGF,oDACE,WACA,YACA,0BACA,AADA,kBACA,yBACA,UAAA,CAGF,8EACE,iBAAA,CAGF,2DACE,YACA,YACA,6BACA,AADA,qBACA,SAAA,CAGF,wBACE,WACA,cACA,yEACA,4BACA,kCACA,AADA,0BACA,gBACA,gBACA,WACA,gBAAA,CAGF,+BACE,YAAA,CAGF,qCACE,YAAA,CAGF,4CACE,gBACA,iBACA,kBAAA,CAGF,qCACE,gBACA,UAAA,CAGF,+CACE,gBACA,oBACA,iBAAA,CAGF,sBACE,aACA,cACA,4BACA,AADA,oBACA,sBACA,2BACA,gBACA,yCACA,AADA,iCACA,sCACA,mCAAA,CAGF,4BACE,aACA,eAAA,CAGF,kCACE,iBAAA,CAGF,qCACE,WACA,cACA,iBAAA,CAGF,2CACE,WACA,YACA,4BAAA,mBAAA,CAGF,6CACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,SACA,SAAA,CAGF,kCACE,gBACA,cACA,gBAAA,CAGF,mCACE,gBACA,iBACA,eAAA,CAGF,wCACE,eAAA,CAGF,cACE,WACA,cACA,gBAAA,CAGF,oBACE,WACA,YACA,aAAA,CAGF,YACE,kBACA,eAAA,CAGF,mBACE,kBACA,SAAA,CAGF,+BACE,UAAA,CAGF,yBACE,UAAA,CAGF,mCACE,UAAA,CAGF,gBACE,WACA,kBACA,OACA,MACA,OAAA,CAGF,kDACE,QAAA,CAGF,iCACE,WACA,eAAA,CAFF,2CAKI,kBAAA,CAIJ,iCACE,mBACA,gBACA,aACA,gBACA,sBACA,cACA,WACA,kBACA,gBACA,4BACA,AADA,oBACA,yCAAA,gCAAA,CAGF,6BACE,mBACA,gBACA,uBACA,eAAA,CAGF,6CACE,aAAA,CAKF,kDACE,aACA,iBACA,mBACA,mBAAA,sBAAA,kBAAA,aAAA,CAGF,gDACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,8BAAA,6BAAA,2BAAA,uBAAA,kBAAA,CAGF,wDACE,aACA,aAAA,CAGF,8CACE,uBACA,aACA,iBACA,4BACA,AADA,oBACA,gBACA,mBACA,mBAAA,sBAAA,kBAAA,aAAA,CAKF,sCACE,WACA,aAAA,CAGF,0CACE,YAAA,CAGF,4CACE,WACA,YACA,sCAAA,6BAAA,CAGF,gDACE,4BAAA,mBAAA,CAGF,uCACE,gBACA,WACA,kBACA,2BAAA,CAGF,oCACE,4BACA,kBACA,gBACA,gBAAA,CAGF,2CACE,eAAA,CAGF,wCACE,eAAA,CAIF,qBACE,WACA,aACA,mBACA,oBACA,eACA,OACA,MACA,UACA,8BAAA,qBAAA,CAGF,4BACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,aACA,sBACA,4BACA,AADA,oBACA,gBACA,kBAAA,CAGF,kCACE,aACA,YACA,eAAA,CAGF,6DACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,+CACE,UAAA,CAGF,sCACE,gBACA,UAAA,CAGF,0EAEE,cACA,WACA,YACA,gBACA,aACA,iBAAA,CAGF,kBACE,aACA,cACA,eACA,OACA,WACA,gBACA,sBACA,UACA,SAAA,CAGF,wBACE,UACA,iBAAA,CAGF,mCACE,gBAAA,CAGF,8BACE,YACA,aACA,iBAAA,CAGF,mBACE,gBACA,iBAAA,CAGF,sBACE,sBACA,4BAAA,CAGF,yBACE,aACA,iBACA,sBACA,4BAAA,mBAAA,CAGF,4BACE,WACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,gCACA,gBACA,QAAA,CAGF,kCACE,WACA,aAAA,CAGF,qCACE,aACA,aAAA,CAGF,wCACE,WACA,YACA,sCAAA,6BAAA,CAGF,yCACE,2BAAA,kBAAA,CAGF,+BACE,gCACA,gBACA,WACA,eAAA,CAGF,kCACE,aACA,mBAAA,CAGF,sCACE,gBACA,iBACA,eAAA,CAGF,yCACE,gBAAA,CAGF,2CACE,eAAA,CAGF,oCACE,gBACA,WACA,eAAA,CAGF,uCACE,gBAAA,CAGF,+CACE,gBACA,cACA,iBACA,4BAAA,CAGF,qDACE,YACA,aACA,gBAAA,CAIF,wBACE,8BACA,AADA,sBACA,aACA,gBACA,gBACA,cACA,eACA,OACA,WACA,yBACA,UACA,KAAA,CAGF,wCACE,gBACA,kBAAA,CAGF,mBACE,8BACA,AADA,sBACA,WACA,aACA,sBACA,gBACA,gBACA,cACA,eACA,OACA,UACA,UACA,+BAAA,CAGF,iCACE,gBACA,cACA,aACA,aACA,2BACA,AADA,mBACA,wBAAA,CAGF,sBACE,kBACA,sBACA,uBAAA,CAGF,+BACE,aACA,cACA,aAAA,CAGF,qCACE,WACA,WAAA,CAGF,oBACE,iBAAA,CAGF,0BACE,oBACA,sBACA,mBAAA,CAGF,kCACE,aACA,iBAAA,CAGF,2CACE,aACA,aAAA,CAGF,iDACE,WACA,YACA,2BAAA,kBAAA,CAGF,wCACE,aACA,gBACA,cACA,eAAA,CAGF,+CACE,gBACA,cACA,gBAAA,CAGF,+CACE,gBACA,cACA,gBAAA,CAGF,0CACE,aACA,kBACA,YACA,OAAA,CAGF,+CACE,yBACA,YACA,kBACA,YACA,kBACA,gBACA,aAAA,CAGF,kDACE,eACA,oCACA,AADA,4BACA,iBAAA,CAGF,qDACE,qBACA,aAAA,CAGF,gDACE,cACA,oCACA,AADA,4BACA,iBAAA,CAGF,+CACE,aAAA,CAGF,4BACE,qBAAA,CAGF,sCACE,8BACA,AADA,sBACA,WACA,aACA,gBACA,gBACA,aAAA,CAGF,gDACE,cACA,gBACA,kBAAA,CAGF,2CACE,gBACA,UAAA,CAGF,0DACE,WACA,gBACA,qBACA,iBAAA,CAGF,6CACE,oBACA,4BAAA,CAGF,sDACE,gBACA,WACA,YACA,aACA,sBACA,2BAAA,kBAAA,CAGF,sDACE,aACA,aAAA,CAGF,4DACE,WACA,YACA,2BAAA,kBAAA,CAGF,mDACE,aACA,gBACA,WACA,cACA,eAAA,CAGF,0DACE,eAAA,CAGF,wDACE,gBACA,UAAA,CAGF,sBACE,8BACA,AADA,sBACA,WACA,aACA,yBACA,eACA,SACA,gBACA,yBAAA,CAGF,8BACE,aAAA,CAIF,gCACE,gBACA,cACA,iBAAA,CAGF,6BACE,eAAA,CAGF,kCACE,WACA,gBACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAGF,mCACE,gBACA,WACA,4BACA,AADA,oBACA,sBACA,aACA,aACA,kBACA,iBAAA,CAGF,wCACE,iBAAA,CAIF,cACE,gBACA,cACA,iBAAA,CAGF,oBACE,kBACA,OACA,QACA,cACA,WACA,WACA,cACA,WACA,kCACA,AADA,0BACA,wBAAA,CAGF,+BACE,aACA,aAAA,CAGF,qCACE,WACA,YACA,0BACA,AADA,kBACA,yBAAA,CAGF,4BACE,aACA,WACA,kBACA,eAAA,CAGF,kCACE,gBACA,iBACA,WAAA,CAGF,oCACE,gBACA,aACA,iCACA,gBACA,4BACA,AADA,oBACA,iBAAA,CAGF,0CACE,YACA,aACA,gBACA,iBAAA,CAGF,gCACE,4BACA,gBACA,gBAAA,CAGF,0CACE,gBACA,iBAAA,CAGF,2BACE,gBACA,WACA,iBAAA,CAGF,eACE,eAAA,CAGF,oBACE,sBACA,2BACA,AADA,mBACA,aAAA,CAGF,0BACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,WACA,iBAAA,CAIF,+BACE,aAAA,CAIF,sCACE,kBACA,WACA,OACA,UACA,aACA,sBACA,QACA,iBAAA,CAGF,+BACE,iBACA,gBACA,aAAA,CAGF,wBACE,sBACA,4BACA,AADA,oBACA,gBAAA,CAGF,gEAEE,aACA,gBACA,8BACA,gBACA,aAAA,CAGF,yCACE,gBACA,UAAA,CAGF,mDACE,gBACA,gBAAA,CAGF,oCACE,aAAA,CAGF,0CACE,gBACA,cACA,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,iBAAA,CAGF,mDACE,YACA,aACA,wBAAA,CAGF,yDACE,WACA,WAAA,CAGF,0BACE,sBACA,iBACA,4BAAA,mBAAA,CAGF,uCACE,sBAAA,CAGF,6CACE,WACA,gBACA,gBACA,WACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,oBACA,iBAAA,CARF,uDAWI,gBACA,UAAA,CAGF,oDACE,WACA,cACA,kBACA,WACA,QACA,SACA,iCACA,YACA,WAAA,CAKJ,sDACE,YACA,aACA,kBAAA,CAGF,mDACE,mBAAA,eAAA,WAAA,MAAA,CAGF,4DACE,WACA,WAAA,CAGF,eACE,aACA,aACA,kBACA,aAAA,CAIF,sBACE,qBAAA,CAGF,6BACE,eACA,iBAAA,CAGF,oCACE,gBACA,gBAAA,CAGF,yCACE,eAAA,CAGF,+CACE,cACA,iBAAA,CAGF,2CACE,YACA,aACA,gBAAA,CAGF,+CACE,cACA,iBAAA,CAGF,uCACE,cACA,gBACA,mBAAA,CAGF,iCACE,gBACA,iBACA,0BAAA,CAGF,6BACE,2BACA,gBACA,cACA,oBAAA,CAGF,8BACE,gBACA,6BACA,aACA,gBACA,aAAA,CAGF,oCACE,aACA,aACA,iBAAA,CAGF,wCACE,aACA,gBACA,yBACA,cACA,gBACA,kBACA,kBACA,0BAAA,CAGF,+CACE,YACA,kBACA,WACA,aACA,oCACA,AADA,4BACA,yBACA,sBACA,WACA,WACA,oBACA,sBAAA,CAGF,8CACE,YACA,kBACA,WACA,aACA,oCACA,AADA,4BACA,yBACA,sBACA,YACA,WACA,oBACA,uBAAA,CAGF,wCACE,cACA,eAAA,CAGF,wBACE,sBACA,gBACA,gBACA,cACA,iBACA,YAAA,CAGF,kCACE,gBACA,aAAA,CAGF,kCACE,gBACA,aAAA,CAGF,6BACE,iBACA,qBAAA,CAGF,oCACE,aACA,6BACA,gBACA,cACA,kBACA,mBAAA,CAGF,4CACE,gBACA,aAAA,CAGF,sDACE,cACA,gBACA,oBACA,gBAAA,CAGF,4BACE,gBAAA,CAGF,mCACE,gBACA,cACA,aACA,WACA,sBACA,kBACA,iBAAA,CAGF,oCACE,UAAA,CAGF,sCACE,sBACA,wBAAA,CAIF,qBACE,8BACA,AADA,sBACA,wBACA,eACA,SACA,WACA,cACA,sBACA,WACA,4BAAA,CAGF,2BACE,gBACA,WACA,eAAA,CAGF,qCACE,kBACA,gBACA,aACA,iBAAA,CAGF,oDACE,iBAAA,CAGF,yDACE,WACA,kBACA,gBACA,6BACA,AADA,qBACA,WACA,QACA,aACA,kBACA,eACA,eAAA,CAGF,0BACE,aACA,aACA,WACA,eAAA,CAGF,+BACE,aACA,kBACA,iBAAA,CAGF,oCACE,sCACA,AADA,8BACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,+BACE,sCACA,AADA,8BACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAIpB,wBACE,WACA,WAAA,CAGF,8BACE,WACA,YACA,aAAA,CAGF,2BACE,oBACA,qBAAA,CAGF,uCACE,aACA,gBACA,UAAA,CAGF,6CACE,gBACA,cACA,iBACA,mBAAA,CAGF,oDACE,iBAAA,CAGF,gDACE,kBAAA,CAGF,mDACE,WACA,eAAA,CAGF,qCACE,gBACA,aAAA,CAGF,2BACE,sBACA,gBAAA,CAGF,iCACE,oBACA,gBACA,cACA,+BAAA,CAGF,2CACE,gBACA,WACA,aACA,gBAAA,CAGF,qDACE,kBAAA,CAGF,mEACE,QACA,UAAA,CAGF,qDACE,cACA,gBACA,iBAAA,CAGF,gDACE,gBACA,kBAAA,CAGF,0CACE,8BACA,AADA,sBACA,yBACA,WACA,cACA,2BACA,AADA,mBACA,iBACA,mBAAA,CAGF,qEACE,UAAA,CAGF,AAJA,4DACE,UAAA,CAGF,AAJA,gEACE,UAAA,CAGF,AAJA,iEACE,UAAA,CAGF,AAJA,uDACE,UAAA,CAGF,uCACE,gBAAA,CAGF,gDACE,sBACA,2BACA,AADA,mBACA,aACA,WACA,iBACA,gBACA,aAAA,CAGF,mDACE,qBACA,aAAA,CAGF,sDACE,UACA,kBACA,2BAAA,CAGF,gEACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,kBACA,yBACA,WACA,gBACA,kBAAA,CAGF,6EACE,wBAAA,CAGF,gFACE,wBAAA,CAGF,qDACE,UACA,kBACA,gBACA,UAAA,CAGF,6BACE,iBACA,sBACA,aAAA,CAGF,mCACE,gBACA,aAAA,CAGF,yCACE,gBAAA,CAGF,0CACE,aAAA,CAGF,0BACE,8BACA,AADA,sBACA,WACA,cACA,sBACA,gBACA,gBACA,WACA,eACA,SACA,MAAA,CAGF,sCACE,gBACA,WACA,aACA,aACA,yBACA,4BACA,AADA,oBACA,kBACA,iBAAA,CAIF,0BACE,WACA,WAAA,CAGF,gCACE,WACA,YACA,aAAA,CAGF,0BACE,sBACA,gBACA,mBAAA,CAGF,mCACE,gBACA,6BACA,gBACA,aAAA,CAGF,8CACE,gBACA,iBACA,kBAAA,CAGF,qDACE,iBAAA,CAGF,qCACE,aACA,gBACA,aAAA,CAGF,8CACE,iBAAA,CAGF,+CACE,cACA,gBACA,qBACA,kBAAA,CAGF,4DACE,kBACA,eAAA,CAGF,4BACE,8BACA,AADA,sBACA,eACA,WACA,sBACA,SACA,cACA,eAAA,CAGF,wCACE,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,gBACA,UAAA,CAGF,2CACE,aACA,aAAA,CAGF,kDACE,gBACA,kBACA,oBAAA,CAGF,8CACE,wBAAA,CAIF,kBACE,qBAAA,CAGF,wBACE,gBACA,iBACA,2BACA,eAAA,CAGF,8BACE,aACA,UAAA,CAGF,8BACE,aACA,eAAA,CAGF,yDACE,UAAA,CAGF,AAJA,gDACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,qDACE,UAAA,CAGF,AAJA,2CACE,UAAA,CAGF,gCACE,YAAA,CAGF,iCACE,YAAA,CAGF,0CACE,eAAA,CAGF,qBACE,gBACA,aACA,sBACA,gBAAA,CAGF,0BACE,kBACA,aACA,gBACA,aAAA,CAGF,qBACE,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,6BACA,gBACA,UAAA,CAGF,2BACE,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,cACA,gBACA,cACA,wBAAA,CAIF,kBACE,cACA,eAAA,CAGF,0BACE,aAAA,CAGF,gCACE,4BACA,gBACA,gCAAa,CAGf,sCACE,gBACA,iBACA,WACA,mBAAA,CAGF,mCACE,aACA,aAAA,CAGF,yCACE,WACA,WAAA,CAGF,eACE,sBACA,aACA,cACA,2BACA,AADA,mBACA,yBAAA,CAGF,qBACE,kBACA,gBACA,cACA,uBAAA,CAGF,wBACE,iBACA,gCAAA,CAGF,0BACE,gBAAA,CAGF,gBACE,aACA,wBAAA,CAGF,sBACE,sBACA,2BACA,AADA,mBACA,mBAAA,CAGF,6BACE,aACA,gBACA,8BACA,gBACA,aAAA,CAGF,mCACE,gBACA,eACA,aACA,kBAAA,CAGF,iCACE,gBACA,gBAAA,CAGF,0CACE,aACA,aAAA,CAGF,gDACE,WACA,YACA,2BAAA,kBAAA,CAGF,uCACE,aACA,gBACA,WACA,eAAA,CAGF,6CACE,aACA,aAAA,CAGF,8CACE,gBAAA,CAGF,kCACE,gBACA,cACA,iBACA,uBACA,wBACA,6BAAA,CAGF,yCACE,gBACA,gBAAA,CAGF,8BACE,cACA,eAAA,CAGF,mCACE,aACA,aACA,kBACA,kBACA,WACA,4BACA,AADA,oBACA,eAAA,CAGF,6CACE,sBACA,UAAA,CAGF,2CACE,WACA,qBAAA,CAGF,wCACE,iBAAA,CAIF,uBACE,gBACA,aAAA,CAGF,0BACE,gCAAA,CAGF,gCACE,aACA,aAAA,CAGF,sCACE,WACA,WAAA,CAGF,6BACE,4BACA,gBACA,iBAAA,CAGF,gCACE,aAAA,CAGF,oCACE,gBACA,iBACA,WACA,kBAAA,CAGF,mCACE,iBAAA,CAGF,oBACE,sBACA,gBACA,cACA,eAAA,CAGF,4BACE,eAAA,CAGF,gCACE,iBACA,aAAA,CAGF,8BACE,gBACA,gBAAA,CAGF,oCACE,aACA,YACA,wBAAA,CAGF,wCACE,gBACA,cACA,iBACA,YACA,aACA,kBACA,iBAAA,CAGF,wBACE,gBACA,cACA,sBACA,+BAAA,CAGF,8BACE,gBACA,cACA,mBAAA,CAGF,qCACE,iBAAA,CAGF,qBACE,WACA,WAAA,CAGF,2BACE,WACA,YACA,aAAA,CAGF,wBACE,sBACA,iBACA,aAAA,CAGF,8BACE,gBACA,aAAA,CAGF,oCACE,gBAAA,CAGF,sCACE,cACA,aACA,gBAAA,CAGF,4CACE,gBACA,WACA,2BACA,AADA,mBACA,sBACA,mBACA,iBAAA,CAGF,mCACE,2BACA,iBACA,iBAAA,CAGF,0CACE,iBACA,eAAA,CAGF,uBACE,8BACA,AADA,sBACA,WACA,cACA,eACA,SACA,OACA,sBACA,gBACA,yBAAA,CAGF,4BACE,aACA,aACA,kBACA,kBACA,4BACA,AADA,oBACA,WACA,eAAA,CAGF,mCACE,WACA,qBAAA,CAGF,oCACE,WACA,qBAAA,CAGF,iCACE,iBAAA,CAIF,mBACE,oBACA,sBACA,aAAA,CAGF,4BACE,aACA,aAAA,CAGF,kCACE,WACA,YACA,2BAAA,kBAAA,CAGF,yBACE,aACA,gBACA,WACA,eAAA,CAGF,+BACE,aACA,aAAA,CAGF,gCACE,gBAAA,CAGF,yBACE,sBACA,cAAA,CAGF,kCACE,cACA,uBACA,oBACA,+BAAA,CAGF,0CACE,YAAA,CAGF,oDACE,YACA,aACA,sBACA,kBACA,kBACA,WACA,eAAA,CAGF,gDACE,aACA,gBACA,aAAA,CAGF,sDACE,UAAA,CAGF,yDACE,eAAA,CAGF,wCACE,gBACA,aACA,aACA,2BACA,AADA,mBACA,qBAAA,CAGF,+BACE,gBACA,iBAAA,CAGF,yCACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,UACA,aACA,qBAAA,CAGF,4CACE,wBAAA,CAGF,qCACE,gBACA,WACA,aACA,8BACA,uBAAA,CAGF,wCACE,yBAAA,CAGF,2CACE,gBACA,WACA,gBAAA,CAGF,iDACE,iBAAA,CAIF,gBACE,sBACA,0BACA,4BACA,AADA,oBACA,uBACA,aACA,SACA,mBAAA,CAGF,0BACE,gBACA,aACA,cACA,0BACA,AADA,kBACA,WACA,kBACA,mBACA,4BACA,0BACA,0BACA,qBAAA,CAGF,+BACE,2BAAA,CAGF,wBACE,gBACA,iBACA,kBACA,sBAAA,CAGF,yBACE,sBACA,2BACA,gBACA,cACA,cAAA,CAGF,+BACE,gBACA,aAAA,CAGF,qCACE,gBAAA,CAGF,wCACE,UAAA,CAGF,2BACE,aACA,aACA,4BACA,AADA,oBACA,WACA,gBACA,kBACA,kBACA,wBAAA,CAIF,wBACE,eACA,sBACA,+BAAA,CAGF,+BACE,oBACA,gBACA,aAAA,CAGF,wCACE,WAEA,yBACA,4BACA,AADA,oBACA,iBAAA,CAIF,2CACE,kCACA,AADA,0BACA,qBAAA,CAGF,gDACE,YAAA,CAGF,yDACE,YACA,aACA,iBAAA,CAGF,+DACE,WACA,YACA,0BAAA,iBAAA,CAEF,6DACE,WACA,YACA,0BAAA,iBAAA,CAGF,gEACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,SACA,OAAA,CAGF,sDACE,YAAA,CAGF,4DACE,WACA,gBACA,aAAA,CAGF,6DACE,gBACA,WACA,gBAAA,CAGF,6CACE,gBACA,sBACA,4BACA,AADA,oBACA,aACA,aACA,yBAAA,CAGF,oDACE,kBACA,QACA,MACA,gBACA,qCACA,aACA,aACA,sCAAA,6BAAA,CAGF,qBACE,qBAAA,CAGF,2BACE,4BACA,gCACA,kBACA,gBACA,aAAA,CAGF,oCACE,YACA,YAAA,CAGF,0CACE,WACA,YACA,0BAAA,iBAAA,CAGF,kCACE,aACA,iBACA,aAAA,CAGF,wCACE,cACA,iBACA,UAAA,CAGF,sCACE,YAAA,CAGF,4CACE,eAAA,CAGF,0DACE,gBACA,iBAAA,CAGF,0BACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,wBAAA,CAGF,uBACE,gBACA,kBACA,aACA,aACA,4BACA,AADA,oBACA,4BAAA,CAIF,oBACE,aACA,gBACA,cACA,kBACA,iBAAA,CAGF,8BACE,gBACA,qBACA,kBAAA,CAGF,uBACE,aACA,YACA,aAAA,CAGF,6BACE,WACA,YACA,aAAA,CAIF,qCACE,WACA,8BACA,AADA,sBACA,YACA,cACA,iBAAA,CAGF,mDACE,wBACA,WAAA,CAGF,mCACE,WACA,YACA,4BAAA,mBAAA,CAGF,4BACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAIF,uBACE,yBACA,WACA,eAAA,CAGF,sCACE,aAAA,CAGF,oDACE,wBACA,cACA,4BACA,AADA,oBACA,WACA,kBACA,4BACA,kCAAA,yBAAA,CAGF,6DACE,wEAAsB,CAGxB,yDACE,oEAAsB,CAGxB,2DACE,sEAAsB,CAGxB,0DACE,qEAAsB,CAGxB,2DACE,sEAAsB,CAGxB,6DACE,wEAAsB,CAGxB,0DACE,YACA,cACA,cACA,kBACA,WAAA,CAGF,0DACE,gBACA,iBACA,uBAAA,CAGF,8DACE,gBACA,iBACA,qBAAA,CAGF,wEACE,kBACA,eAAA,CAGF,yDACE,gBAAA,CAGF,+DACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,4BACA,iBAAA,CAGF,oEACE,gBACA,WACA,gCAAa,CAGf,6EACE,kBACA,WACA,aACA,uCACA,WACA,OACA,QACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,0DACE,gBACA,sBAAA,CAGF,oEACE,gBACA,mBACA,oBAAA,CAGF,wBACE,sBACA,qBACA,mBAAA,CAGF,+BACE,aACA,gBACA,gBACA,iBACA,aAAA,CAGF,yCACE,cACA,mBACA,gBACA,mBACA,oBAAA,CAGF,oCACE,gBACA,UAAA,CAGF,6CACE,aAAA,CAGF,oCACE,aACA,cACA,yBACA,yBACA,wBACA,4BAAA,mBAAA,CAGF,yCACE,oBACA,gBACA,UAAA,CAGF,+CACE,+BACA,mBACA,gBACA,cACA,gBAAA,CAGF,yDACE,WACA,gBACA,qBACA,iBAAA,CAGF,iDACE,gBACA,aACA,sBACA,aACA,4BACA,AADA,oBACA,wBAAA,CAGF,yDACE,QACA,YACA,kCACA,AADA,6BACA,AADA,0BACA,yBACA,4BAAA,mBAAA,CAGF,gDACE,iBACA,gBACA,gBACA,UAAA,CAGF,qDACE,aAAA,CAGF,4BACE,sBACA,4BACA,AADA,oBACA,eACA,WACA,SACA,aACA,cACA,oBACA,WACA,2CACA,AADA,mCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,+BACE,uCAAW,AAAX,8BAAW,CAGb,qCACE,WACA,cACA,iBAAA,CAGF,2CACE,WACA,YACA,sCAAA,6BAAA,CAGF,oCACE,gBACA,gBACA,WACA,iBACA,gBACA,cACA,aAAA,CAGF,+CACE,kBACA,gBACA,WACA,WACA,SACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAIb,0BACE,2EACA,4BACA,kCACA,AADA,0BACA,WACA,cACA,gBACA,WACA,wBACA,kBACA,gCAAa,CAGf,wCACE,gBACA,4BACA,kBACA,kBAAA,CAGF,gCACE,YACA,YACA,sBACA,wBAAA,CAGF,+BACE,gBACA,4BACA,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,gBAAA,CAGF,qCACE,aACA,iBAAA,CAGF,0CACE,WACA,eAAA,CAGF,gCACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,aACA,sCACA,AADA,8BACA,0BACA,yBACA,aACA,gBACA,UAAA,CAGF,sCACE,kBACA,UAAA,CAIF,yCACE,sBACA,cACA,iBACA,sCAAA,6BAAA,CAGF,gDACE,gBACA,kBAAA,CAGF,iCACE,sBACA,mBAAA,CAGF,sCACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,yBACA,yBACA,cACA,gBACA,mBAAA,CAGF,gDACE,gBACA,kBAAA,CAGF,uCACE,cACA,6BACA,gBACA,UAAA,CAGF,8CACE,gBACA,cACA,kBAAA,CAGF,4CACE,gBACA,iCACA,aAAA,CAGF,kCACE,sBACA,eAAA,CAGF,wCACE,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,aACA,cACA,kBACA,4BACA,AADA,oBACA,yBACA,wBAAA,CAGF,iDACE,YACA,cACA,kBACA,SACA,UAAA,CAGF,uDACE,WACA,WAAA,CAGF,8CACE,aACA,gBACA,iBACA,aAAA,CAGF,8CACE,gBACA,cACA,0BACA,kBACA,kBACA,aACA,aACA,4BAAA,mBAAA,CAIF,0BACE,cACA,gBACA,cACA,wBAAA,CAGF,gCACE,aACA,YACA,wBAAA,CAGF,gCACE,cAAA,CAGF,0CACE,mBACA,gBACA,oBAAA,CAIF,6BACE,gBACA,WACA,eACA,UACA,WACA,UAAA,CAGF,sBACE,4BACA,kCACA,AADA,0BACA,aACA,aAAA,CAGF,oBACE,4BACA,AADA,oBACA,8BAAA,CAGF,0BACE,6BACA,kBACA,cACA,sBACA,gBACA,wBAAA,CAGF,mCACE,aACA,aAAA,CAGF,yCACE,WACA,YACA,2BAAA,kBAAA,CAGF,gCACE,aACA,gBACA,cACA,aAAA,CAGF,qCACE,gBACA,UAAA,CAGF,+CACE,gBACA,iBAAA,CAGF,uCACE,gBACA,gBAAA,CAGF,8CACE,eAAA,CAGF,kCACE,kBACA,aACA,aACA,4BACA,AADA,oBACA,gBACA,WACA,kBACA,kBACA,YACA,aACA,oCACA,AADA,4BACA,iCACA,8BAAA,CAGF,4CACE,kBACA,eAAA,CAGF,0BACE,gBACA,aACA,kBACA,iBAAA,CAIF,wBACE,gBACA,WACA,eACA,UACA,WACA,UAAA,CAGF,iBAEE,4BACA,kCACA,AADA,0BACA,aACA,cACA,cACA,kBACA,gBAAA,CAGF,oBACE,oEAAsB,CAGxB,yBACE,0BACA,gBACA,UAAA,CAGF,kCACE,YACA,aACA,kBAAA,CAGF,wCACE,WACA,YACA,0BACA,AADA,kBACA,sBAAA,CAGF,oCACE,iBAAA,CAGF,uBACE,qEACA,4BACA,kCACA,AADA,0BACA,aACA,cACA,yBACA,gBACA,kBACA,iBACA,aAAA,CAGF,yBACE,kBACA,WACA,gBACA,gBAAA,CAGF,iCACE,UAAA,CAGF,+DAGE,aACA,0BACA,sBACA,4BACA,AADA,oBACA,2BACA,4BACA,iBAAA,CAGF,0BACE,sBAAA,CAGF,mCACE,aACA,cACA,iBAAA,CAIF,yCACE,WACA,YACA,2BAAA,kBAAA,CAGF,gCACE,aACA,gBACA,cACA,aAAA,CAGF,uCACE,iBACA,eAAA,CAGF,4CACE,eAAA,CAGF,4CACE,gBACA,WACA,kBAAA,CAGF,+BACE,gBACA,aACA,sBACA,WACA,4BAAA,mBAAA,CAGF,uCACE,QACA,YACA,kCACA,AADA,6BACA,AADA,0BACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,2BACE,gBACA,WACA,gBAAA,CAGF,kCACE,gBACA,cACA,iBAAA,CAGF,4CACE,gBACA,cACA,oBACA,oBAAA,CAGF,8BACE,gBACA,iBACA,WACA,WACA,aACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,kBACA,kBACA,gBAAA,CAGF,iCACE,0BACA,cACA,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,oEACA,WACA,YAAA,CAGF,uBACE,gBACA,WACA,kBACA,gBAAA,CAGF,iFAGE,qEACA,4BACA,kCACA,AADA,0BACA,aACA,aACA,kBACA,SACA,mCACA,AADA,+BACA,AADA,2BACA,cACA,SAAA,CAGF,sBACE,wBAAA,CAGF,2DAEE,gBACA,iBACA,aACA,gBAAA,CAGF,6EAEE,YACA,YAAA,CAGF,mFAEE,iCAAW,AAAX,6BAAW,AAAX,wBAAW,CAGb,yFAEE,WACA,YACA,aAAA,CAGF,+EAEE,cAAA,CAGF,kCACE,8BACA,aAAA,CAGF,0CACE,YAAA,CAGF,mDACE,YACA,YAAA,CAGF,yDACE,WACA,YACA,0BACA,AADA,kBACA,0BAAA,CAGF,gDACE,aACA,gBACA,UAAA,CAGF,sDACE,gBACA,cACA,kBAAA,CAGF,yCACE,eAAA,CAGF,mDACE,gBACA,sBACA,kBAAA,CAGF,4BACE,gBACA,kBACA,kBACA,YAAA,CAGF,uBACE,wBAAA,CAGF,qCACE,mBAAA,CAGF,+BACE,gBAAA,CAGF,qCACE,sBACA,aAAA,CAGF,qBACE,eACA,QACA,SACA,aACA,oBACA,WACA,4BACA,AADA,oBACA,sBACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BACA,AADA,uBACA,AADA,mBACA,qBACA,kBAAA,CAGF,wBACE,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,8BACE,WACA,cACA,iBAAA,CAGF,wCACE,kBACA,YACA,UACA,WACA,gBACA,YACA,aACA,kBACA,iBAAA,CAGF,oCACE,WACA,YACA,sCAAA,6BAAA,CAGF,6BACE,gBACA,WACA,gBACA,kBACA,gBAAA,CAGF,gCACE,gBAAA,CAGF,2BACE,gBACA,iBACA,kBACA,gBAAA,CAGF,6BACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,kBACA,kBACA,wBAAA,CAIF,sBACE,sBACA,mBAAA,CAGF,8BACE,cACA,gCACA,eAAA,CAGF,uCACE,aACA,aAAA,CAGF,6CACE,WACA,YACA,2BAAA,kBAAA,CAGF,oCACE,aACA,gBACA,cACA,aAAA,CAGF,0CACE,gBACA,aAAA,CAGF,oDACE,aAAA,CAGF,2CACE,eAAA,CAGF,gDACE,gBACA,gBAAA,CAGF,mDACE,gBAAA,CAGF,8BACE,cACA,gBACA,eAAA,CAGF,sCACE,aAAA,CAGF,mCACE,UAAA,CAGF,uCACE,aAAA,CAGF,mCACE,gBACA,WACA,aACA,aACA,2BACA,AADA,mBACA,kBACA,iBAAA,CAGF,0CACE,WACA,qBAAA,CAGF,wCACE,iBAAA,CAIF,oBACE,4BACA,kCACA,AADA,0BACA,WACA,aAAA,CAGF,0BACE,WACA,aAAA,CAOF,wBACE,aACA,cACA,sBACA,2BACA,AADA,mBACA,gBACA,wBAAA,CAGF,iCACE,aACA,aAAA,CAGF,uCACE,WACA,YACA,2BAAA,kBAAA,CAGF,8BACE,aACA,gBACA,aAAA,CAGF,oCACE,aACA,2BACA,AADA,mBACA,gBACA,gBAAA,CAGF,8CACE,YACA,yBACA,kBACA,cACA,YACA,iBAAA,CAGF,yCACE,kBACA,eAAA,CAGF,sCACE,eAAA,CAGF,6CACE,gBACA,iBACA,aAAA,CAGF,kDACE,eAAA,CAGF,sDACE,gBACA,WACA,mBACA,6BACA,iBAAA,CAGF,gDACE,gBACA,WACA,aACA,aACA,kBACA,kBACA,2BAAA,kBAAA,CAGF,0DACE,gBACA,iBAAA,CAIF,6CACE,cACA,kBACA,6BACA,kBAAA,CAGF,qBACE,WACA,aACA,yBACA,iBACA,gBACA,8BAAA,qBAAA,CAGF,0BACE,eAAA,CAGF,oCACE,gBACA,qBACA,kBAAA,CAGF,gCACE,cACA,iBAAA,CAGF,6BACE,YACA,aACA,kBACA,gBACA,iBAAA,CAGF,oCACE,WAAA,CAGF,2CACE,WAAA,CAGF,oCACE,YACA,gBACA,gBACA,aAAA,CAGF,uBACE,qBAAA,CAGF,6BACE,oBACA,kBACA,gCACA,aAAA,CAGF,qCACE,YAAA,CAGF,2CACE,YAAA,CAGF,8CACE,YACA,YAAA,CAGF,oDACE,WACA,YACA,0BAAA,iBAAA,CAGF,0CACE,gBACA,cACA,gBAAA,CAGF,0CACE,gBACA,cACA,eAAA,CAGF,8CACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,kBACA,kBACA,iBAAA,CAGF,wDACE,gBACA,gBAAA,CAGF,6BACE,gBACA,cACA,kBACA,aACA,iBAAA,CAGF,uCACE,kBACA,eAAA,CAGF,sBACE,sBACA,gBACA,iBACA,gBACA,aAAA,CAGF,6BACE,aACA,4BAAA,CAGF,uCACE,kBACA,gBACA,aAAA,CAGF,2BACE,kBACA,gBACA,aAAA,CAGF,qCACE,cACA,gBACA,cAAA,CAGF,sCACE,gBACA,iBAAA,CAGF,sCACE,gBACA,aAAA,CAGF,2BACE,eACA,SACA,WACA,cACA,sBACA,gBACA,WACA,UAAA,CAGF,wCACE,UACA,gBACA,UAAA,CAGF,kDACE,eAAA,CAGF,gCACE,UACA,kBACA,mBACA,YACA,WACA,eAAA,CAGF,gEACE,qBAAA,CAGF,uEACE,wBAAA,CAGF,8FACE,QAAA,CAIF,mBACE,WACA,cACA,sBACA,6BACA,gBACA,iBAAA,CAGF,6BACE,iBACA,kBACA,WACA,YACA,YAAA,CAGF,4BACE,aACA,aAAA,CAGF,kCACE,WACA,YACA,2BAAA,kBAAA,CAGF,yBACE,aACA,gBACA,UAAA,CAGF,gCACE,gBACA,iBACA,gBAAA,CAGF,qCACE,eAAA,CAGF,sCACE,mBACA,mBACA,4BACA,AADA,oBACA,gBACA,oBACA,iBAAA,CAGF,oBACE,sBACA,iBACA,sBAAA,CAGF,2BACE,gBAAA,CAGF,iCACE,aACA,WACA,qBAAA,CAGF,iCACE,eACA,gBACA,aAAA,CAGF,uCACE,cAAA,CAGF,0CACE,aAAA,CAGF,iDACE,yBACA,kBACA,2BACA,AADA,mBACA,gBACA,iBACA,qBACA,sBACA,cACA,iBAAA,CAGF,0BACE,gBACA,iBACA,kBACA,iBACA,UAAA,CAGF,0BACE,gBACA,gBAAA,CAGF,iCACE,kBACA,eAAA,CAGF,oCACE,kBAAA,CAGF,mCACE,YACA,aACA,sBAAA,CAGF,yCACE,WACA,YACA,0BACA,AADA,kBACA,yBAAA,CAGF,gDACE,WAAA,CAGF,6BACE,gBACA,cACA,iBAAA,CAGF,uCACE,gBACA,qBAAA,CAGF,6BACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,WACA,wBAAA,CAGF,2DAEE,kBACA,gBACA,cACA,iBAAA,CAGF,sCACE,gBACA,cACA,qBACA,iBAAA,CAGF,yCACE,gBACA,cACA,iBAAA,CAGF,4BACE,sBACA,gBAAA,CAGF,mCACE,oBACA,kBACA,aACA,6BACA,gBACA,aAAA,CAGF,yCACE,aAAA,CAGF,mDACE,kBACA,eAAA,CAGF,kCACE,gBAAA,CAGF,wCACE,aACA,sBAAA,CAGF,iDACE,WACA,cACA,iBAAA,CAGF,uDACE,WACA,YACA,4BAAA,mBAAA,CAGF,uDACE,kBACA,UACA,WACA,iBACA,aACA,kBACA,kBACA,sCACA,AADA,8BACA,gBACA,WACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,8CACE,gBACA,WACA,gBAAA,CAGF,+CACE,iBACA,eAAA,CAIF,+BACE,aACA,gBACA,sBACA,gBACA,aAAA,CAGF,yCACE,iBAAA,CAGF,oBACE,gBACA,cACA,4BACA,sBACA,+BAAA,CAGF,0BACE,gBACA,cACA,2BACA,AADA,mBACA,aACA,gBACA,yBACA,kBACA,sBAAA,CAGF,uCACE,UAAA,CAIF,qBACE,sBACA,6BACA,gBACA,cACA,+BAAA,CAGF,iCACE,gBAAA,CAGF,sCACE,uBAAA,CAGF,gDACE,gBACA,UAAA,CAGF,0DACE,iBAAA,CAGF,qCACE,WACA,eAAA,CAGF,+BACE,aACA,yBACA,4BACA,AADA,oBACA,gBAAA,CAGF,wCACE,gBACA,4BACA,WACA,aAAA,CAGF,mEACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,8DACE,UAAA,CAGF,AAJA,+DACE,UAAA,CAGF,AAJA,qDACE,UAAA,CAGF,qCACE,iBACA,iBAAA,CAGF,8CACE,aACA,cACA,uBACA,kBACA,gBACA,UAAA,CAGF,oDACE,WACA,YACA,2BAAA,kBAAA,CAGF,4DACE,gBACA,kBACA,WACA,YAAA,CAGF,8DACE,cACA,eAAA,CAGF,kCACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,gBAAA,CAIF,cACE,WACA,aAAA,CAGF,yBACE,oBACA,aAAA,CAGF,+BACE,aACA,gBACA,WACA,gBAAA,CAGF,8CACE,gBACA,iBACA,yBACA,kBACA,2BACA,AADA,mBACA,mBACA,kBAAA,CAGF,+BACE,YAAA,CAGF,wCACE,YACA,aACA,0BACA,AADA,kBACA,yBAAA,CAGF,8CACE,WACA,YACA,0BAAA,iBAAA,CAGF,gCACE,aACA,aACA,sBACA,sCACA,AADA,8BACA,gBACA,aAAA,CAGF,0CACE,gBACA,wBACA,aACA,iBAAA,CAGF,eACE,sBACA,4BACA,4BACA,AADA,oBACA,qBACA,iBAAA,CAGF,qBACE,gBACA,aAAA,CAGF,2BACE,gBACA,cACA,iBAAA,CAGF,sCACE,YACA,aACA,yBACA,4BACA,AADA,oBACA,gBACA,cACA,iBAAA,CAGF,gCACE,gBACA,UAAA,CAGF,mCACE,aAAA,CAGF,kCACE,uEACA,4BACA,kCACA,AADA,0BACA,YACA,aACA,cAAA,CAGF,8CACE,sEAAsB,CAGxB,yCACE,uEACA,YACA,YAAA,CAGF,oBACE,aACA,aACA,gBACA,kBACA,WACA,4BACA,AADA,oBACA,kBACA,aAAA,CAGF,uBACE,gCAAA,CAGF,qBACE,sEACA,4BACA,kCACA,AADA,0BACA,aACA,aACA,kBACA,SACA,mCACA,AADA,+BACA,AADA,2BACA,cACA,SAAA,CAGF,gBACE,iBACA,mBAAA,CAGF,qBACE,gBACA,WACA,iBAAA,CAGF,uBACE,sBAAA,CAGF,6BACE,YACA,cACA,4BACA,kCACA,AADA,0BACA,WACA,gBACA,kBACA,mBACA,mBACA,qEAAsB,CAGxB,6BACE,gBACA,aAAA,CAGF,sBACE,gBACA,cACA,gBACA,kBACA,eAAA,CAGF,aACE,2BACA,0BAAA,CAGF,mBACE,6BACA,aAAA,CAGF,yBACE,cACA,gBACA,YAAA,CAGF,yBACE,gBACA,cACA,eAAA,CAGF,wBACE,gBACA,gCAAa,CAGf,eACE,aACA,cACA,eACA,QACA,SACA,oBACA,qBACA,WACA,kBACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,6BACE,4BACA,kCACA,AADA,0BACA,WACA,WAAA,CAGF,kBACE,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,2BACE,yEACA,4BACA,kCACA,AADA,0BACA,aACA,cACA,mBACA,iBAAA,CAGF,kCACE,gBACA,WACA,iBAAA,CAGF,qCACE,gBACA,4BACA,eAAA,CAGF,uCACE,gBACA,cACA,aACA,aACA,yBACA,4BACA,AADA,oBACA,kBACA,wBAAA,CAIF,+BACE,aACA,kBACA,gBACA,gBACA,UAAA,CAGF,gCACE,sBACA,gBACA,UAAA,CAGF,uCACE,cACA,6BACA,oBACA,iBAAA,CAGF,6CACE,aACA,gBACA,cACA,kBAAA,CAGF,4CACE,gBACA,iCACA,aAAA,CAIF,oBACE,sBACA,gBAAA,CAGF,0BACE,kBACA,oBACA,iBACA,6BACA,gBACA,UAAA,CAGF,+BACE,cACA,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,iBACA,iBAAA,CAGF,uCACE,gBAAA,CAGF,yCACE,WACA,gBACA,kBACA,QACA,QACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,mCACE,2BAAA,CAGF,mCACE,cACA,eAAA,CAGF,8DACE,UAAA,CAGF,AAJA,qDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,gDACE,UAAA,CAGF,iCACE,aACA,UAAA,CAGF,sCACE,gBACA,UAAA,CAGF,kCACE,oBAAA,CAGF,2CACE,uBACA,aACA,cACA,kBACA,gBACA,WACA,qBAAA,CAGF,2DACE,cAAA,CAGF,iDACE,WACA,YACA,2BAAA,kBAAA,CAGF,yDACE,kBACA,gBACA,WACA,aACA,YACA,aACA,iBAAA,CAGF,2DACE,cACA,gBACA,YACA,aACA,iBAAA,CAGF,6DACE,qBAAA,CAGF,yBACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAIF,0BACE,sBACA,oBACA,iBAAA,CAGF,oCACE,gBACA,6BACA,aACA,kBACA,gBACA,aAAA,CAGF,gCACE,eAAA,CAGF,oCACE,4BACA,iBACA,gBACA,aAAA,CAGF,2CACE,gBACA,gBAAA,CAGF,oCACE,kBACA,iBACA,SACA,YACA,WACA,aACA,cACA,kBAAA,CAGF,2CACE,aAAA,CAIF,iBACE,sBACA,yBAAA,CAGF,uBACE,kBACA,oBACA,6BACA,aAAA,CAGF,gCACE,aACA,aAAA,CAGF,sCACE,WACA,YACA,2BAAA,kBAAA,CAGF,6BACE,aACA,cACA,gBACA,aAAA,CAGF,oCACE,UAAA,CAGF,oCACE,eAAA,CAGF,qCACE,gBACA,cACA,aACA,aACA,sBACA,2BACA,AADA,mBACA,kBACA,iBAAA,CAIF,oBACE,kBAAA,CAGF,oBACE,gBAAA,CAGF,2BACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,8BACA,AADA,sBACA,yBACA,4BACA,AADA,oBACA,gBACA,YAAA,CAGF,iCACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,gBACA,iBAAA,CAGF,4DACE,UAAA,CAGF,AAJA,mDACE,UAAA,CAGF,AAJA,uDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,8CACE,UAAA,CAGF,qCACE,WACA,eAAA,CAGF,yBACE,aACA,kBACA,aACA,kBACA,gBACA,aAAA,CAGF,mBACE,gBACA,WACA,8BAAA,CAGF,kBACE,kBAAA,CAGF,wBACE,gBACA,cACA,gBACA,aACA,2BACA,AADA,mBACA,kBACA,sBACA,sBAAA,CAGF,kBACE,6BACA,0BAAA,CAIF,sBACE,cACA,yCACA,AADA,iCACA,sCACA,mCAAA,CAGF,4BACE,gBACA,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,iBAAA,CAGF,kCACE,6BAAA,CAGF,sCACE,YACA,aACA,0BACA,AADA,kBACA,0BACA,kBACA,kBACA,wBACA,eAAA,CAGF,yCACE,yBACA,WACA,oBAAA,CAGF,kCACE,WACA,aACA,cACA,8BAAA,yBAAA,qBAAA,CAGF,qCACE,YAAA,CAGF,gCACE,eAAA,CAGF,sCACE,6BACA,cACA,gBACA,UAAA,CAGF,4CACE,YAAA,CAGF,6CACE,YAAA,CAGF,8EACE,UAAA,CAGF,AAJA,qEACE,UAAA,CAGF,AAJA,yEACE,UAAA,CAGF,AAJA,0EACE,UAAA,CAGF,AAJA,gEACE,UAAA,CAGF,qCACE,gBACA,WACA,gBAAA,CAGF,qCACE,gBACA,WACA,aACA,aACA,kBACA,4BACA,AADA,oBACA,kBACA,iBAAA,CAGF,sCACE,gBACA,WACA,kBACA,sBAAA,CAGF,uCACE,cACA,mBACA,6BACA,aACA,aAAA,CAGF,6CACE,gBACA,cACA,cACA,kBACA,UAAA,CAGF,wEACE,UAAA,CAIF,AALA,+DACE,UAAA,CAIF,AALA,mEACE,UAAA,CAIF,AALA,oEACE,UAAA,CAIF,AALA,0DACE,UAAA,CAIF,YACE,aACA,sBACA,2BACA,AADA,mBACA,yBACA,wBACA,SACA,mBAAA,CAGF,qBACE,aACA,cACA,aAAA,CAGF,2BACE,WACA,WAAA,CAGF,iBACE,gBACA,cACA,iBACA,kBACA,eAAA,CAGF,kBACE,gBACA,WACA,kBACA,gBAAA,CAGF,iBACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,wBAAA,CAIF,mCACE,cACA,gBACA,gBACA,UAAA,CAGF,yCACE,gBACA,cACA,kBAAA,CAGF,0CACE,qBAAA,CAGF,iDACE,gBAAA,CAGF,+CACE,kBACA,oBACA,6BACA,aAAA,CAGF,uDACE,YAAA,CAGF,6DACE,aACA,gBACA,aAAA,CAGF,gEACE,YACA,YAAA,CAGF,sEACE,WACA,YACA,0BACA,AADA,kBACA,uBACA,kCACA,AADA,0BACA,+BACA,6BACA,AACA,8BAAA,qBAAA,CAGF,sDACE,eAAA,CAGF,kDACE,oBACA,gBACA,WACA,eAAA,CAGF,wDACE,UAAA,CAIF,uBACE,oBAAA,CAGF,oBACE,sBACA,aACA,kBACA,gBACA,cACA,4BAAA,CAGF,0BACE,WAAA,CAGF,6BACE,cACA,gCAAA,CAGF,uBACE,8BAEA,AAFA,sBAEA,WACA,sBACA,aACA,eAAA,CAGF,8BACE,aACA,aACA,4BACA,AADA,oBACA,yBACA,kBACA,iBAAA,CAGF,oCACE,YACA,gBACA,aACA,iBAAA,CAGF,+DACE,UAAA,CAGF,AAJA,sDACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,2DACE,UAAA,CAGF,AAJA,iDACE,UAAA,CAGF,wCACE,kBACA,YACA,WACA,gBACA,QACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,iCACE,gBACA,aAAA,CAGF,8BACE,sBACA,aACA,6BACA,WACA,eAAA,CAGF,iCACE,eACA,MACA,OACA,WACA,SAAA,CAGF,wCACE,kBACA,mBACA,AADA,eACA,AADA,OACA,UACA,UAAA,CAGF,8CACE,YACA,aACA,iBACA,oBAAA,CAGF,+BACE,gBAAA,CAGF,2BACE,sBACA,6BACA,cACA,wBACA,gBACA,UAAA,CAGF,mCACE,YAAA,CAGF,4CACE,aACA,cACA,0BAAA,iBAAA,CAGF,kDACE,WACA,YACA,0BACA,AADA,kBACA,uBACA,iCACA,AADA,yBACA,8BACA,4BACA,AACA,8BAAA,qBAAA,CAGF,yCACE,aACA,gBACA,UAAA,CAGF,+CACE,gBACA,WACA,mBAAA,CAGF,kCACE,aACA,iBACA,gBACA,UAAA,CAIF,sBACE,4EACA,4BACA,kCACA,AADA,0BACA,WACA,aAAA,CAGF,4BACE,gBACA,WACA,kBACA,iBAAA,CAGF,oCACE,gBACA,4BACA,kBACA,WAAA,CAGF,8CACE,gBACA,iBAAA,CAGF,2BACE,kBACA,WAEA,gBACA,gCAAa,CAGf,8BACE,gBACA,iBACA,gBACA,2BAAA,CAGF,oCACE,iBACA,iBAAA,CAGF,2CACE,gBACA,UAAA,CAGF,mBACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,yBAAA,CAGF,oBACE,gBACA,gBAAA,CAGF,0BACE,aACA,cACA,4BACA,AADA,oBACA,sBACA,iBACA,gBACA,UAAA,CAGF,oCACE,gBAGA,oBACA,aAAA,CAIF,qBACE,sBACA,wBACA,mBAAA,CAGF,6BACE,aACA,cACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,4BACA,AADA,oBACA,cACA,4BACA,eAAA,CAGF,wCACE,0EACA,4BACA,kCACA,AADA,qBACA,YACA,WACA,uBAAA,CAGF,iDACE,eAAA,CAGF,gEACE,gBACA,WACA,iCACA,iBACA,aACA,iBAAA,CAGF,2DACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,yBACA,kBACA,iBAAA,CAGF,oDACE,gBAAA,CAGF,0DACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBAAA,CAGF,iEACE,gBACA,iCACA,WACA,eAAA,CAGF,0BACE,cACA,+BAAA,CAGF,gCACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,UAAA,CAGF,yCACE,YACA,aACA,cACA,mBAAA,CAGF,+CACE,WACA,WAAA,CAGF,6BACE,gBACA,gBAAA,CAGF,mCACE,yBACA,aACA,cACA,4BACA,AADA,oBACA,wBACA,gBACA,aAAA,CAGF,sCACE,yBACA,aAAA,CAGF,4CACE,YACA,YAAA,CAGF,kDACE,WACA,WAAA,CAGF,+CACE,gBACA,iBACA,cACA,kBAAA,CAGF,kDACE,aAAA,CAGF,2BACE,eAAA,CAGF,iCACE,gBAAA,CAGF,mDACE,YACA,aACA,0BACA,AADA,kBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,kBACA,kBACA,WACA,eAAA,CAGF,0DACE,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,yDACE,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,yCACE,aACA,gBACA,aAAA,CAGF,+CACE,YAAA,CAGF,sDACE,gBACA,WACA,eAAA,CAGF,sCACE,gBACA,cACA,aACA,aACA,sBACA,4BACA,AADA,oBACA,kBACA,iBAAA,CAGF,0CACE,gBACA,WACA,yBACA,oBAAA,CAIF,mBACE,sBACA,aACA,WACA,iBAAA,CAGF,yBACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,cACA,WAAA,CAGF,4BACE,cACA,gCAAA,CAIF,oBACE,WACA,aAAA,CAGF,0BACE,WACA,WAAA,CAGF,wBACE,eACA,MACA,sBACA,OACA,WACA,SAAA,CAGF,sBACE,WACA,mBACA,gBACA,aAAA,CAGF,iCACE,kBACA,gBACA,WACA,aAAA,CAGF,4BACE,qBACA,gBACA,cACA,aACA,kBACA,gBACA,aACA,wBAAA,CAGF,kCACE,6BAAA,CAGF,kCACE,gBACA,iBACA,aACA,iBAAA,CAGF,+BACE,yBACA,WACA,iBAAA,CAGF,uCACE,WACA,QACA,SACA,mCACA,oCACA,+BACA,kBACA,aACA,WACA,SACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,uBACE,aACA,gCACA,gBACA,aAAA,CAGF,gCACE,aAAA,CAGF,6BACE,gBACA,aAAA,CAGF,iCACE,gBACA,iBACA,yBACA,kBACA,2BACA,AADA,mBACA,aAAA,CAKF,qBACE,iBAAA,CAGF,wBACE,gBACA,gCACA,cACA,iBAAA,CAGF,iCACE,aACA,aAAA,CAGF,uCACE,WACA,YACA,2BAAA,kBAAA,CAGF,8BACE,aACA,gBACA,WACA,aAAA,CAGF,qCACE,gBACA,cACA,iBAAA,CAGF,0CACE,gBACA,gBAAA,CAGF,wCACE,gBACA,sBACA,aACA,4BACA,AADA,oBACA,aACA,iBAAA,CAGF,gDACE,QACA,YACA,kCACA,AADA,6BACA,AADA,0BACA,wBAAA,CAGF,+CACE,kBACA,OACA,QACA,qCACA,AADA,iCACA,AADA,6BACA,QACA,gBACA,iBACA,iBAAA,CAGF,8BACE,gBACA,WACA,aACA,aACA,2BACA,AADA,mBACA,kBACA,kBACA,kBACA,YACA,YAAA,CAIF,kBACE,8BACA,AADA,sBACA,wEACA,4BACA,kCACA,AADA,0BACA,WACA,cACA,eAAA,CAGF,yBACE,gBACA,UAAA,CAGF,8BACE,eAAA,CAGF,kCACE,gBACA,kBACA,4BAAA,CAGF,yBACE,gBACA,WACA,kBACA,kBAAA,CAGF,+BACE,eAAA,CAGF,yCACE,eACA,gBACA,cACA,sBACA,2BAAA,kBAAA,CAGF,4BACE,WACA,gBACA,iBAAA,CAGF,0BACE,oBACA,qBAAA,CAGF,4CACE,aACA,gBACA,gBAAA,CAGF,+CACE,gBACA,aAAA,CAGF,iCACE,mBACA,gBACA,aAAA,CAGF,wCACE,aACA,kBAAA,CAGF,yBACE,eACA,SACA,WACA,cACA,sBACA,gBACA,WACA,UAAA,CAGF,sCACE,UACA,gBACA,UAAA,CAGF,8BACE,WACA,kBACA,mBACA,YACA,WACA,eAAA,CAIF,sBACE,aACA,cACA,wBAAA,CAGF,oCACE,WACA,aAAA,CAGF,mCACE,WACA,YACA,2BAAA,kBAAA,CAGF,gDACE,YACA,aACA,wBACA,AADA,gBACA,iCACA,AADA,6BACA,AADA,yBACA,gCACA,AADA,wBACA,4BACA,2BACA,yBACA,UACA,cAAA,CAGF,uDACE,yBACA,QAAA,CAGF,yCACE,aACA,UAAA,CAGF,eACE,gBACA,WACA,cACA,gBACA,qBAAA,CAGF,kBACE,eACA,MACA,OACA,WACA,SAAA,CAGF,0BACE,mBACA,kBACA,gBACA,UAAA,CAGF,qBACE,qBACA,gBACA,WACA,gBAAA,CAGF,wBACE,aAAA,CAGF,2BACE,iBAAA,CAGF,2BACE,YACA,YACA,2BACA,AADA,mBACA,wBAAA,CAGF,mBACE,iBAAA,CAGF,sBACE,eACA,gCACA,eAAA,CAGF,+BACE,aACA,aAAA,CAGF,qCACE,WACA,YACA,2BAAA,kBAAA,CAGF,4BACE,aACA,cACA,gBACA,UAAA,CAGF,kCACE,gBACA,aAAA,CAGF,wCACE,aACA,cACA,gBAAA,CAGF,2CACE,aACA,aAAA,CAGF,8CACE,WACA,YACA,2BAAA,kBAAA,CAGF,4BACE,iBACA,gBACA,WACA,gBAAA,CAGF,0BACE,gBAAA,CAIF,mBACE,gBACA,gBACA,cACA,iBACA,uBACA,eAAA,CAGF,kBACE,eACA,6BACA,oBAAA,CAGF,yBACE,gBACA,aACA,2BACA,AADA,mBACA,kBACA,kBACA,gBACA,iBACA,WAAA,CAGF,wBACE,kBACA,gBACA,UAAA,CAGF,kCACE,gBACA,kBAAA,CAGF,mDACE,eAAA,CAGF,oBACE,gBACA,gBACA,WACA,gBACA,iBAAA,CAGF,0BACE,WACA,aAAA,CAIF,sDACE,eAAA,CAGF,2DACE,gCAAa,CAIf,UACE,6FACA,AADA,wEACA,AADA,mEACA,AADA,sEACA,2EACA,WACA,YAAA,CAGF,mBACE,0EACA,4BACA,kCACA,AADA,0BACA,WACA,cACA,iBAAA,CAGF,4BACE,aACA,cACA,0BACA,AADA,kBACA,uCACA,aAAA,CAGF,kCACE,aACA,cACA,0BACA,AADA,kBACA,aAAA,CAGF,mBACE,aACA,4BACA,AADA,oBACA,sBACA,yBACA,2BAAA,CAGF,0BACE,gBACA,cACA,kBACA,gBAAA,CAGF,sCACE,iBAAA,CAGF,gCACE,cACA,8BACA,oBAAA,CAGF,mCACE,cACA,2BAAA,CAGF,+BACE,gCACA,wBACA,iBAAA,CAGF,qCACE,gBACA,cACA,oBACA,eAAA,CAGF,qCACE,gBACA,kBAAA,CAGF,qCACE,gBACA,YAAA,CAGF,gEACE,aAAA,CAGF,AAJA,uDACE,aAAA,CAGF,AAJA,2DACE,aAAA,CAGF,AAJA,4DACE,aAAA,CAGF,AAJA,kDACE,aAAA,CAGF,yCACE,YAAA,CAGF,qCACE,kBACA,aACA,aACA,yBACA,4BACA,AADA,oBACA,WACA,kBACA,kBACA,aACA,QACA,eAAA,CAGF,wCACE,wBAAA,CAGF,oCACE,iBACA,gBACA,cACA,gBAAA,CAGF,8CACE,gBACA,mBACA,qBAAA,CAGF,0BACE,gBACA,WACA,iBACA,aACA,4BACA,AADA,oBACA,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,oEACA,kBACA,kBACA,gBAAA,CAGF,wBACE,cACA,kBACA,mBACA,gBACA,aAAA,CAGF,kBACE,0EACA,4BACA,kCACA,AADA,0BACA,aACA,aACA,aAAA,CAIF,aACE,eAAA,CAGF,qBACE,WACA,aACA,sBACA,eACA,OACA,QACA,MACA,UACA,+BAAA,CAGF,4BACE,aACA,aACA,yBACA,4BACA,AADA,oBACA,eAAA,CAGF,sCACE,gBACA,UAAA,CAGF,kCACE,gBACA,YACA,YAAA,CAGF,6DACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,+CACE,UAAA,CAGF,oBACE,eACA,aACA,OACA,UACA,cACA,yBACA,gBACA,kBACA,wBAAA,CAGF,0BACE,aACA,WACA,gBACA,aAAA,CAGF,6BACE,sBACA,+BACA,WACA,kBACA,cACA,gBAAA,CAGF,qBACE,mBACA,gBACA,gBAAA,CAGF,4BACE,iBAAA,CAGF,mCACE,YAAA,CAGF,yCACE,aACA,YACA,qBAAA,CAGF,yCACE,gBACA,WACA,eACA,gBAAA,CAGF,2BACE,uBACA,AADA,eACA,kBAAA,CAGF,iCACE,aACA,gBAAA,CAGF,0CACE,aACA,cACA,0BAAA,iBAAA,CAGF,gDACE,WACA,YACA,0BAAA,iBAAA,CAGF,uCACE,gBACA,WACA,aACA,kBACA,aACA,iBAAA,CAIF,MACE,eACA,WACA,YACA,kBACA,WACA,WAAA,CAGF,eACE,gBACA,YACA,4BACA,AADA,oBACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BACA,AADA,uBACA,AADA,mBACA,SACA,aAAA,CAGF,kBACE,UACA,2BACA,AADA,uBACA,AADA,mBACA,cACA,gBACA,mBAAA,CAGF,yBACE,gBACA,WACA,qBACA,aACA,aAAA,CAGF,eACE,YACA,aACA,0BAAA,iBAAA,CAGF,sBACE,WACA,YACA,0BAAA,iBAAA,CAIF,iBACE,gBACA,qBAAA,CAGF,wBACE,aAAA,CAGF,+BACE,6BAAA,CAGF,gCACE,YAAA,CAGF,yCACE,aACA,aAAA,CAGF,+CACE,WACA,YACA,2BAAA,kBAAA,CAGF,sCACE,aACA,aAAA,CAGF,4CACE,gBACA,aAAA,CAGF,4CACE,gBACA,UAAA,CAGF,+BACE,aACA,iBACA,eAAA,CAGF,wCACE,aAAA,CAGF,oCACE,cACA,aAAA,CAGF,wCACE,WACA,4BAAA,CAGF,cACE,gBACA,cACA,0BACA,aACA,kBACA,iBACA,gBACA,qBAAA,CAGF,qBACE,aAAA,CAGF,aACE,eACA,aACA,cACA,sBACA,4BACA,AADA,oBACA,QACA,SACA,oBACA,mBACA,WACA,0CACA,AADA,qCACA,AADA,kCACA,2BACA,AADA,uBACA,AADA,mBACA,SAAA,CAGF,gBACE,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,yBACE,+EACA,kCACA,AADA,0BACA,WACA,cACA,sCACA,AADA,8BACA,kBACA,gBACA,WACA,mBACA,iBAAA,CAGF,mCACE,kBACA,gBACA,YACA,UACA,YACA,aACA,iBAAA,CAGF,yBACE,eAAA,CAGF,+BACE,cACA,gCACA,gBACA,UAAA,CAGF,sCACE,WACA,aACA,gBAAA,CAGF,gDACE,gBACA,iBAAA,CAGF,4CACE,WACA,YACA,iBACA,UAAA,CAGF,+CACE,UAAA,CAGF,qBACE,gBACA,WACA,aACA,aACA,kBACA,kBACA,4BACA,AADA,oBACA,yBACA,wBAAA,CAGF,sBACE,gBACA,cACA,aACA,aACA,kBACA,kBACA,4BACA,AADA,oBACA,sBACA,wBAAA,CAGF,uBACE,gBACA,cACA,gBACA,mBAAA,CAGF,iCACE,cACA,gBACA,mBACA,qBAAA,CAGF,gBACE,yBACA,aACA,sBACA,4BACA,AADA,oBACA,iBAAA,CAGF,qBACE,gBACA,aACA,kBACA,gBACA,UAAA,CAGF,sBACE,aACA,eAAA,CAGF,wBACE,aACA,gBAAA,CAGF,0BACE,aACA,gBAAA,CAGF,wBACE,eAAA,CAGF,8BACE,gCACA,aACA,eAAA,CAGF,wCACE,aAAA,CAIF,qBACE,WACA,aACA,sBACA,gBACA,cACA,eACA,MACA,MAAA,CAGF,8BACE,aAAA,CAGF,sBACE,iBAAA,CAGF,4BACE,sBACA,UAAA,CAGF,kCACE,gBAAA,CAGF,uCACE,6BACA,gBACA,iBACA,cACA,oBACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,yBAAA,sCAAA,sBAAA,6BAAA,CAGF,6CACE,gBACA,mBACA,WACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBAAA,2BAAA,sBAAA,kBAAA,CAGF,uCACE,oBACA,eAAA,CAGF,6CACE,iBAAA,CAGF,qDACE,gBACA,UAAA,CAGF,qDACE,QACA,SACA,oCACA,qCACA,+BACA,kBACA,WACA,aAAA,CAGF,4DACE,WACA,QACA,SACA,mCACA,oCACA,4BACA,kBACA,WACA,QAAA,CAGF,8CACE,aACA,sBACA,sBACA,4BACA,AADA,oBACA,kBACA,YACA,SAAA,CAGF,qDACE,aACA,kBACA,iBAAA,CAGF,4DACE,4BAAA,CAGF,4CACE,gBACA,cACA,aACA,aACA,4BACA,AADA,oBACA,sBACA,kBACA,iBAAA,CAGF,iDACE,iBAAA,CAIF,2BACE,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,mEAAY,CAGd,kCACE,gBACA,UAAA,CAGF,iCACE,kBACA,eAAA,CAGF,4CACE,gBACA,kBAAA,CAGF,4BACE,WACA,aACA,sBACA,eAAA,CAGF,sCACE,gBACA,aAAA,CAGF,kCACE,aACA,YACA,eAAA,CAGF,6DACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,+CACE,UAAA,CAGF,iCACE,gBACA,cACA,gBACA,YACA,sBACA,iBACA,+BAAA,CAGF,2CACE,gBACA,cACA,kBAAA,CAGF,4BACE,YAAA,CAGF,oCACE,gBAAA,CAGF,iCACE,gBACA,WACA,aACA,aACA,kBACA,kBACA,mBACA,iBAAA,CAGF,qCACE,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,mEAAY,CAGd,+CACE,QACA,SACA,oCACA,qCACA,+BACA,kBACA,WACA,aAAA,CAGF,sDACE,WACA,QACA,SACA,mCACA,oCACA,4BACA,kBACA,YACA,QAAA,CAGF,wCACE,aACA,sBACA,sBACA,4BACA,AADA,oBACA,kBACA,YACA,SAAA,CAGF,8CACE,aACA,iBAAA,CAGF,oDACE,4BAAA,CAGF,2CACE,WACA,WAAA,CAIF,sBACE,WACA,sBACA,gBAAA,CAGF,iCACE,gBACA,gCACA,YAAA,CAGF,sCACE,aACA,gBACA,cACA,iBAAA,CAGF,4CACE,kBACA,WACA,UACA,aACA,sBACA,QACA,kBACA,OAAA,CAGF,uCACE,aACA,gBACA,cACA,iBAAA,CAGF,iDACE,gBACA,cACA,sBACA,kBAAA,CAGF,+BACE,gBACA,cACA,sBACA,aAAA,CAGF,qCACE,gBACA,cACA,mBAAA,CAGF,4CACE,iBAAA,CAGF,4BACE,WACA,WAAA,CAGF,kCACE,WACA,YACA,aAAA,CAGF,wBACE,WACA,qBAAA,CAGF,8BACE,gCACA,gBACA,aACA,gBACA,cACA,iBAAA,CAGF,oCACE,aACA,YACA,gBAAA,CAGF,8CACE,gBACA,iBAAA,CAGF,kDACE,iBAAA,CAGF,2CACE,UAAA,CAGF,8CACE,aAAA,CAGF,uCACE,kBACA,gBACA,cACA,WAAA,CAGF,qCACE,cACA,oBACA,kBACA,SAAA,CAGF,+DACE,UAAA,CAGF,AAJA,sDACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,2DACE,UAAA,CAGF,AAJA,iDACE,UAAA,CAGF,wBACE,gBACA,WACA,WACA,cACA,yBACA,kBACA,mBACA,eACA,QAAA,CAIF,qBACE,8BACA,AADA,sBACA,kCACA,AADA,0BACA,WACA,cACA,4BACA,iBAAA,CAKF,oBACE,kBACA,WACA,OACA,QACA,MACA,SAAA,CAIF,2BACE,kBACA,OACA,QACA,cACA,WACA,WACA,cACA,WACA,kCAAA,yBAAA,CAIF,2BACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,UAAA,CAGF,gCACE,gBACA,kBAAA,CAGF,sBACE,kBACA,aACA,sBACA,4BACA,AADA,oBACA,2BACA,kBACA,UAAA,CAGF,6BACE,gBACA,cACA,gBACA,mBAAA,CAGF,uCACE,cACA,gBACA,mBACA,qBAAA,CAGF,kCACE,aACA,kBACA,gBACA,WACA,mBAAA,CAGF,uCACE,gBACA,UAAA,CAIF,wBACE,WACA,aACA,sBACA,gBACA,kBACA,eACA,MACA,OACA,SAAA,CAGF,8BACE,kBACA,gBACA,mBACA,UAAA,CAGF,8BACE,gBACA,cACA,kBACA,oBAAA,CAGF,iCACE,aAAA,CAGF,wCACE,gBACA,iBAAA,CAGF,2BACE,8BACA,AADA,sBACA,WACA,sBACA,4BACA,AADA,oBACA,0BACA,mBAAA,CAGF,kCACE,gBACA,WACA,iBAAA,CAGF,kCACE,gBACA,cACA,kBACA,gBAAA,CAGF,qCACE,gBACA,WACA,gBAAA,CAGF,0CACE,aAAA,CAGF,4CACE,aAAA,CAGF,+CACE,gBACA,iBAAA,CAGF,yBACE,aACA,cACA,sBACA,4BACA,AADA,oBACA,yBACA,2BAAA,CAGF,kCACE,gBACA,UAAA,CAGF,2BACE,gBAAA,CAGF,8BACE,yBACA,0BACA,UAAA,CAIF,oCACE,cAAA,CAIF,wDACE,wBAAA,CAIF,YACE,sBACA,gBACA,aACA,cACA,4BAAA,mBAAA,CAGF,eACE,iBAAA,CAGF,kBACE,cACA,iBACA,eAAA,CAGF,eACE,kBACA,gBACA,aAAA,CAGF,eACE,kBACA,gBACA,0BAAA,CAGF,iBACE,aAAA,CAGF,yBACE,4BACA,aAAA,CAIF,uBACE,gBACA,iBACA,kBACA,gBAAA,CAGF,sBACE,aACA,wBAAA,CAGF,4BACE,WACA,cACA,gCAAA,CAGF,kCACE,WACA,YACA,eAAA,CAGF,6DACE,aAAA,CAGF,AAJA,oDACE,aAAA,CAGF,AAJA,wDACE,aAAA,CAGF,AAJA,yDACE,aAAA,CAGF,AAJA,+CACE,aAAA,CAGF,2CACE,YAAA,CAGF,kCACE,eAAA,CAGF,qCACE,wBAAA,CAGF,4BACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,WACA,yBACA,kBACA,iBAAA,CAKF,kBACE,kBACA,QACA,SACA,eAAA,CAJF,gCAOI,kBACA,OACA,MACA,uBACA,wBAAA,CAIJ,0DAEE,qBAAA,CAGF,2BACE,wBAAA,CAGF,UACE,WACA,aAAA,CAFF,8BAMI,cACA,UAAA,CAAA","file":"to.css","sourcesContent":[null]} \ No newline at end of file +{"version":3,"sources":["style.less"],"names":[],"mappings":"AAAA,oEASE,8BAAA,qBAAA,CAGF,KACE,mBACA,WAAA,CAGF,uDACE,QAAA,CAGF,+BACE,gBACA,UACA,oCACA,AADA,yCACA,AADA,4BACA,kBAAA,CAGF,sCACE,eAAA,CAGF,qCACE,iBAAA,CAGF,QACE,eACA,WACA,cACA,SACA,OACA,sBACA,0BACA,YAAA,CAGF,uBACE,cACA,oBAAA,CAGF,WACE,aAAA,CAGF,mBACE,aAAA,CAGF,cACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,aAAA,CAGF,iBACE,aAAA,CAGF,wBACE,gBACA,aACA,iBAAA,CAGF,gBACE,kBACA,mBACA,qBAAA,CAGF,yBACE,aACA,cACA,iBAAA,CAGF,gCACE,WACA,YACA,2BAAA,kBAAA,CAGF,+BACE,WACA,YACA,2BAAA,kBAAA,CAGF,iCACE,kBACA,UACA,SACA,YACA,aACA,0BAAA,iBAAA,CAGF,2BACE,4BACA,+BAAA,CAGF,6CACE,eAAA,CAGF,sBACE,gBACA,WACA,aACA,eAAA,CAGF,kCACE,eAAA,CAGF,iCACE,gBACA,cACA,iBACA,gBAAA,CAGF,sCACE,mBACA,4BAAA,CAGF,wCACE,YACA,aACA,gBAAA,CAGF,sCACE,gBACA,WACA,mBACA,kBAAA,CAGF,0BACE,kBACA,YACA,YACA,aACA,0BACA,AADA,kBACA,gBACA,YAAA,CAGF,eACE,gBACA,qBAAA,CAGF,qBACE,6BACA,aAAA,CAGF,8BACE,aACA,aAAA,CAGF,qCACE,WACA,YACA,2BAAA,kBAAA,CAGF,2BACE,gBACA,WACA,aACA,eAAA,CAGF,iCACE,gBACA,UAAA,CAGF,qCACE,sBAAA,CAGF,+CAEE,aACA,kBACA,gBACA,cACA,4CAAA,mCAAA,CAGF,oDACE,eAAA,CAGF,kCACE,4BAAA,CAGF,WACE,qBAAA,CAGF,kBACE,cACA,gBACA,aAAA,CAGF,wBACE,cAAA,CAGF,4BACE,iBACA,cACA,aACA,iBAAA,CAGF,qCACE,iCAAW,AAAX,6BAAW,AAAX,wBAAW,CAGb,0BACE,eAAA,CAGF,gCACE,aACA,mBAAA,CAGF,yCACE,WACA,aAAA,CAGF,gDACE,WACA,YACA,2BAAA,kBAAA,CAGF,sCACE,gBACA,cACA,gBAAA,CAGF,uCACE,gBACA,eAAA,CAGF,4CACE,eAAA,CAGF,aACE,iBAAA,CAGF,wBACE,aACA,cACA,wBAAA,CAGF,+BACE,WACA,WAAA,CAIF,YACE,aAAA,CAGF,mBACE,aAAA,CAIF,yBACE,WACA,WAAA,CAGF,mBACE,kBACA,sBACA,aACA,gBACA,2BACA,AADA,mBACA,YACA,aACA,kBACA,gBACA,cACA,SAAA,CAIF,+BACE,sBACA,oBAAA,CAGF,6CACE,4BAAA,CAGF,yCACE,gBACA,cACA,aACA,eAAA,CAGF,kDACE,YACA,aACA,kBAAA,CAGF,yDACE,WACA,YACA,0BAAA,iBAAA,CAGF,+CACE,iBACA,kBAAA,CAGF,qCACE,gBACA,cACA,eAAA,CAGF,+CACE,gBACA,cACA,iBACA,eAAA,CAGF,wCACE,wBACA,gBAAA,CAGF,iDACE,aACA,cACA,sBAAA,CAGF,wDACE,WACA,WAAA,CAGF,sCACE,gBACA,cACA,yBACA,2BACA,AADA,mBACA,2BACA,cACA,iBAAA,CAGF,8CACE,WACA,QACA,SACA,oCACA,qCACA,kCACA,kBACA,WACA,WAAA,CAKF,aACE,gBACA,iBACA,8BAAA,qBAAA,CAGF,mBACE,WACA,cACA,mBAAA,CAGF,0BACE,wEACA,4BACA,kCACA,AADA,0BACA,aACA,YACA,WACA,gBACA,iBACA,kBACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BACA,AADA,6BACA,AADA,8BACA,AADA,0BACA,AADA,sBACA,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,wBAAA,+BAAA,qBAAA,sBAAA,CAGF,oCACE,uEAAsB,CAGxB,+BACE,eAAA,CAGF,yBACE,aACA,wBACA,sBACA,8BAAA,qBAAA,CAGF,oCACE,gBACA,cACA,aACA,kBACA,+BAAA,CAGF,+BACE,gBACA,WACA,YAAA,CAGF,oCACE,aACA,aACA,4BACA,AADA,oBACA,gBACA,WACA,kBACA,iBAAA,CAGF,yCACE,qBAAA,CAGF,uBACE,YACA,aACA,kBACA,gBACA,8BACA,AADA,sBACA,mBACA,0BACA,UACA,4BACA,AADA,oBACA,2BACA,cACA,kBAAA,CAGF,sBACE,yBACA,0BAAA,CAIF,oBACE,eACA,SACA,OACA,WACA,yBACA,sCACA,AADA,8BACA,YACA,iDACA,yDACA,sDACA,oDACA,kCACA,0CACA,sCACA,uCACA,oCAAc,CAGhB,uBACE,+BACA,uCACA,mCACA,oCACA,iCAAc,CAGhB,2BACE,cACA,WACA,kBACA,mBACA,gBACA,iBACA,kBACA,UAAA,CAGF,qCACE,kBACA,YACA,QACA,mCACA,AADA,+BACA,AADA,2BACA,gBACA,cACA,kBAAA,CAGF,iCACE,mBACA,cACA,aAAA,CAGF,6BACE,aACA,cACA,wBAAA,CAGF,oCACE,WACA,WAAA,CAIF,gBACE,eACA,SACA,WACA,OACA,sBACA,WACA,sCACA,AADA,8BACA,sBACA,0CACA,AADA,kCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,mBACE,uCAAW,AAAX,8BAAW,CAGb,yBACE,yBACA,iBACA,iBAAA,CAGF,kCACE,aACA,aAAA,CAGF,yCACE,WACA,YACA,4BAAA,mBAAA,CAGF,+BACE,aACA,gBACA,aAAA,CAGF,sCACE,gBACA,gBAAA,CAGF,2CACE,eAAA,CAGF,6CACE,WACA,iBAAA,CAGF,mCACE,kBACA,YACA,UACA,gBACA,aAAA,CAGF,gCACE,kBACA,cACA,gBAAA,CAGF,4CACE,gBAAA,CAGF,6CACE,gBACA,WACA,eAAA,CAGF,6CACE,uBAAA,CAGF,oDACE,sBACA,gBACA,cACA,mBACA,2BACA,AADA,mBACA,sBAAA,CAGF,uDACE,WACA,yBACA,oBAAA,CAGF,sBACE,iBACA,eAAA,CAGF,6BACE,gBACA,UAAA,CAGF,8BACE,aACA,gBAAA,CAGF,oCACE,yBACA,YACA,kBACA,YACA,kBACA,cACA,eAAA,CAGF,sCACE,eACA,oCACA,AADA,4BACA,iBAAA,CAGF,yCACE,qBACA,aAAA,CAGF,oCACE,cACA,oCACA,AADA,4BACA,iBAAA,CAGF,uCACE,qBACA,aAAA,CAGF,mCACE,cACA,eAAA,CAIF,iBACE,eACA,WACA,cACA,UACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,oBACE,2BACA,AADA,uBACA,AADA,mBACA,SAAA,CAGF,2BACE,YACA,aACA,0BACA,AADA,kBACA,sBACA,gBACA,WACA,cACA,iBAAA,CAGF,uBACE,WACA,aACA,sBACA,aAAA,CAGF,8BACE,aACA,cACA,iBAAA,CAGF,qCACE,WACA,WAAA,CAGF,oCACE,kBACA,UACA,gBACA,WACA,iBAAA,CAGF,2CACE,gBACA,gBAAA,CAGF,kDACE,eAAA,CAGF,yCACE,gBACA,UAAA,CAGF,8CACE,gBACA,WACA,iBACA,aACA,iBAAA,CAIF,YACE,sBACA,gBAAA,CAGF,mBACE,8BAEA,AAFA,sBAEA,WACA,aACA,gBACA,8BACA,gBACA,cACA,iBAAA,CAGF,mBACE,kBACA,oBACA,iCACA,aAAA,CAGF,4BACE,aACA,aAAA,CAGF,mCACE,WACA,YACA,2BAAA,kBAAA,CAGF,yBACE,aACA,iBAAA,CAGF,+BACE,gBACA,cACA,YAAA,CAGF,8BACE,gBACA,aAAA,CAGF,+BACE,gBACA,cACA,eAAA,CAGF,gCACE,gBACA,gBAAA,CAGF,mCACE,kBACA,aACA,aACA,yBACA,cACA,2BACA,AADA,mBACA,kBACA,kBACA,QACA,aAAA,CAGF,iDACE,gBACA,WACA,yBACA,oBAAA,CAIF,gBACE,sBACA,eACA,SACA,OACA,WACA,WACA,0CACA,AADA,kCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,mBACE,uCAAW,AAAX,8BAAW,CAGb,uBACE,gBACA,iBACA,kBACA,cACA,mBACA,kBACA,UAAA,CAGF,iCACE,kBACA,YACA,cACA,eAAA,CAGF,sBACE,kBACA,gBACA,iBAAA,CAGF,4BACE,kBACA,oBACA,6BACA,cACA,gBACA,UAAA,CAGF,sCACE,gBACA,aAAA,CAGF,oDACE,gBACA,UAAA,CAGF,wCACE,YAAA,CAGF,8CACE,gBACA,iBACA,cACA,kBAAA,CAGF,qDACE,iBAAA,CAGF,4BACE,gBACA,iBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAGF,yBACE,aACA,cACA,iBAAA,CAGF,gCACE,WACA,WAAA,CAIF,QACE,aAAA,CAGF,qBACE,WACA,WAAA,CAGF,2BACE,iBACA,oBACA,aACA,UAAA,CAGF,kCACE,YACA,aACA,uBACA,0BACA,AADA,kBACA,+BACA,SAAA,CAGF,4DACE,iBAAA,CAGF,yCACE,qBACA,wBAAA,CAIF,YACE,sBACA,mBAAA,CAGF,qBACE,aACA,aAAA,CAGF,4BACE,WACA,YACA,2BAAA,kBAAA,CAGF,kBACE,aACA,gBACA,UAAA,CAGF,wBACE,aACA,aAAA,CAGF,yBACE,gBAAA,CAGF,8BACE,eAAA,CAIF,gBACE,WACA,aAAA,CAGF,2BACE,WACA,YACA,wBACA,gBACA,WACA,4EACA,4BACA,kCAAA,yBAAA,CAGF,iCACE,kBAAA,CAGF,gCACE,eAAA,CAGF,qCACE,gBAAA,CAIF,eACE,8EACA,4BACA,kCACA,AADA,0BACA,aACA,cACA,eACA,QACA,WACA,SACA,oBACA,2CACA,AADA,mCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,kBACE,uCAAW,AAAX,8BAAW,CAGb,8BACE,aACA,wBACA,cACA,aAAA,CAGF,oCACE,WACA,cACA,sBACA,kBACA,mBAAA,CAGF,2CACE,WACA,kBACA,YACA,aACA,0BACA,AADA,kBACA,yBACA,WACA,SACA,mBAAA,CAGF,4CACE,WACA,kBACA,YACA,aACA,0BACA,AADA,kBACA,yBACA,WACA,MACA,gBAAA,CAGF,2CACE,aACA,6BACA,YACA,kBACA,mBACA,gBACA,gBAAA,CAGF,gDACE,eAAA,CAGF,0CACE,aACA,gBACA,WACA,eAAA,CAGF,gDACE,gBACA,cACA,iBACA,kBAAA,CAGF,oBACE,+EACA,4BACA,kCACA,AADA,0BACA,aACA,cACA,eACA,SACA,QACA,yBAAA,CAGF,yBACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,yBACA,kBACA,kBACA,iBACA,wBAAA,CAGF,8BACE,WACA,gBACA,kBACA,gBAAA,CAIF,eACE,aACA,WACA,gBACA,8BAAA,qBAAA,CAIF,qBACE,aACA,aACA,kBAAA,CAGF,2BACE,WACA,YACA,aAAA,CAGF,uBAEE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,8BACA,AADA,sBACA,aACA,yBACA,4BACA,AADA,oBACA,gBACA,gBACA,UAAA,CAGF,mBACE,YACA,aACA,gBACA,kBACA,kBAAA,CAGF,yBACE,YACA,YAAA,CAIF,iCACE,gBACA,kBAAA,CAGF,eACE,aAAA,CAIF,sBACE,aAAA,CAIF,qBACE,WACA,aAAA,CAIF,kCACE,WAAA,CAGF,yCACE,YACA,YACA,2BACA,AADA,mBACA,sBACA,UAAA,CAGF,gDACE,SAAA,CAGF,YACE,iBAAA,CAGF,kBACE,UACA,kBACA,gBACA,mBAAA,CAGF,2BACE,YACA,aACA,wBAAA,CAGF,iCACE,WACA,YACA,0BAAA,iBAAA,CAGF,aACE,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,aACA,6BACA,gBACA,yCACA,AADA,iCACA,sCACA,oCACA,kBAAA,CAGF,sBACE,YACA,aACA,4BACA,oBACA,+BACA,AADA,uBACA,4BACA,kBAAA,CAGF,4BACE,WACA,YACA,aAAA,CAGF,yBACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,gBACA,YAAA,CAGF,yCACE,aACA,UAAA,CAGF,uCACE,aACA,UAAA,CAGF,oDACE,aACA,UAAA,CAGF,+BACE,aACA,YAAA,CAGF,sCACE,gBACA,cACA,YACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,yBAAA,CAGF,0CACE,aACA,gBACA,UAAA,CAGF,mCACE,gBACA,UAAA,CAGF,oBACE,aAAA,CAGF,8BACE,aACA,cACA,iBAAA,CAGF,oCACE,WACA,YACA,2BAAA,kBAAA,CAGF,oCACE,kBACA,UACA,UAAA,CAGF,0BACE,gBACA,UAAA,CAGF,2BACE,gBACA,4BACA,eAAA,CAGF,0BACE,cACA,YAAA,CAGF,0BACE,WACA,cACA,iBAAA,CAGF,gCACE,WACA,WAAA,CAGF,gCACE,kBACA,UACA,UAAA,CAGF,uBACE,0BACA,kBACA,cAAA,CAEA,iCACE,QAAA,CAIJ,6BACE,YAAA,CAGF,0BACE,mBAAA,CAGF,6BACE,gBACA,WACA,aACA,eAAA,CAGF,0CACE,wBAAA,+BAAA,qBAAA,sBAAA,CAGF,mCACE,cACA,gBACA,iBACA,mBACA,kBACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBAAA,2BAAA,sBAAA,kBAAA,CAGF,6CACE,kBAAA,CAGF,wCACE,kBACA,SACA,YACA,gBACA,gBAAA,CAGF,6BACE,gBACA,UAAA,CAGF,uCACE,iBACA,eAAA,CAGF,gCACE,mBACA,iBACA,4BACA,eAAA,CAGF,8CACE,aACA,qBACA,mBACA,iCACA,6CACA,AADA,qCACA,0CACA,uCAAA,CAGF,8DACE,gCAAA,CAGF,gEACE,gCAAA,CAGF,gEACE,cAAA,CAGF,uDACE,WACA,aAAA,CAGF,6DACE,WACA,YACA,oCAAA,2BAAA,CAGF,wDACE,gBACA,cACA,kBACA,aACA,kBACA,yBACA,gBACA,aACA,eAAA,CAGF,0BACE,aACA,cACA,wBAAA,CAGF,0BACE,aACA,cACA,wBAAA,CAGF,gCACE,WACA,aAAA,CAGF,6CACE,aACA,UAAA,CAGF,oDACE,WACA,YACA,0BACA,AADA,kBACA,yBACA,UAAA,CAGF,8EACE,iBAAA,CAGF,2DACE,YACA,YACA,6BACA,AADA,qBACA,SAAA,CAGF,wBACE,WACA,cACA,yEACA,4BACA,kCACA,AADA,0BACA,gBACA,gBACA,WACA,gBAAA,CAGF,+BACE,YAAA,CAGF,qCACE,YAAA,CAGF,4CACE,gBACA,iBACA,kBAAA,CAGF,qCACE,gBACA,UAAA,CAGF,+CACE,gBACA,oBACA,iBAAA,CAGF,sBACE,aACA,cACA,4BACA,AADA,oBACA,sBACA,2BACA,gBACA,yCACA,AADA,iCACA,sCACA,mCAAA,CAGF,4BACE,aACA,eAAA,CAGF,kCACE,iBAAA,CAGF,qCACE,WACA,cACA,iBAAA,CAGF,2CACE,WACA,YACA,4BAAA,mBAAA,CAGF,6CACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,SACA,SAAA,CAGF,kCACE,gBACA,cACA,gBAAA,CAGF,mCACE,gBACA,iBACA,eAAA,CAGF,wCACE,eAAA,CAGF,cACE,WACA,cACA,gBAAA,CAGF,oBACE,WACA,YACA,aAAA,CAGF,YACE,kBACA,eAAA,CAGF,mBACE,kBACA,SAAA,CAGF,+BACE,UAAA,CAGF,yBACE,UAAA,CAGF,mCACE,UAAA,CAGF,gBACE,WACA,kBACA,OACA,MACA,OAAA,CAGF,kDACE,QAAA,CAGF,iCACE,WACA,eAAA,CAFF,2CAKI,kBAAA,CAIJ,iCACE,mBACA,gBACA,aACA,gBACA,sBACA,cACA,WACA,kBACA,gBACA,4BACA,AADA,oBACA,yCAAA,gCAAA,CAGF,6BACE,mBACA,gBACA,uBACA,eAAA,CAGF,6CACE,aAAA,CAKF,kDACE,aACA,iBACA,mBACA,mBAAA,sBAAA,kBAAA,aAAA,CAGF,gDACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,8BAAA,6BAAA,2BAAA,uBAAA,kBAAA,CAGF,wDACE,aACA,aAAA,CAGF,8CACE,uBACA,aACA,iBACA,4BACA,AADA,oBACA,gBACA,mBACA,mBAAA,sBAAA,kBAAA,aAAA,CAKF,sCACE,WACA,aAAA,CAGF,0CACE,YAAA,CAGF,4CACE,WACA,YACA,sCAAA,6BAAA,CAGF,gDACE,4BAAA,mBAAA,CAGF,uCACE,gBACA,WACA,kBACA,2BAAA,CAGF,oCACE,4BACA,kBACA,gBACA,gBAAA,CAGF,2CACE,eAAA,CAGF,wCACE,eAAA,CAIF,qBACE,WACA,aACA,mBACA,oBACA,eACA,OACA,MACA,UACA,8BAAA,qBAAA,CAGF,4BACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,aACA,sBACA,4BACA,AADA,oBACA,gBACA,kBAAA,CAGF,kCACE,aACA,YACA,eAAA,CAGF,6DACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,+CACE,UAAA,CAGF,sCACE,gBACA,UAAA,CAGF,0EAEE,cACA,WACA,YACA,gBACA,aACA,iBAAA,CAGF,kBACE,aACA,cACA,eACA,OACA,WACA,gBACA,sBACA,UACA,SAAA,CAGF,wBACE,UACA,iBAAA,CAGF,mCACE,gBAAA,CAGF,8BACE,YACA,aACA,iBAAA,CAGF,mBACE,gBACA,iBAAA,CAGF,sBACE,sBACA,4BAAA,CAGF,yBACE,aACA,iBACA,sBACA,4BAAA,mBAAA,CAGF,4BACE,WACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,gCACA,gBACA,QAAA,CAGF,kCACE,WACA,aAAA,CAGF,qCACE,aACA,aAAA,CAGF,wCACE,WACA,YACA,sCAAA,6BAAA,CAGF,yCACE,2BAAA,kBAAA,CAGF,+BACE,gCACA,gBACA,WACA,eAAA,CAGF,kCACE,aACA,mBAAA,CAGF,sCACE,gBACA,iBACA,eAAA,CAGF,yCACE,gBAAA,CAGF,2CACE,eAAA,CAGF,oCACE,gBACA,WACA,eAAA,CAGF,uCACE,gBAAA,CAGF,+CACE,gBACA,cACA,iBACA,4BAAA,CAGF,qDACE,YACA,aACA,gBAAA,CAIF,wBACE,8BACA,AADA,sBACA,aACA,gBACA,gBACA,cACA,eACA,OACA,WACA,yBACA,UACA,KAAA,CAGF,wCACE,gBACA,kBAAA,CAGF,mBACE,8BACA,AADA,sBACA,WACA,aACA,sBACA,gBACA,gBACA,cACA,eACA,OACA,UACA,UACA,+BAAA,CAGF,iCACE,gBACA,cACA,aACA,aACA,2BACA,AADA,mBACA,wBAAA,CAGF,sBACE,kBACA,sBACA,uBAAA,CAGF,+BACE,aACA,cACA,aAAA,CAGF,qCACE,WACA,WAAA,CAGF,oBACE,iBAAA,CAGF,0BACE,oBACA,sBACA,mBAAA,CAGF,kCACE,aACA,iBAAA,CAGF,2CACE,aACA,aAAA,CAGF,iDACE,WACA,YACA,2BAAA,kBAAA,CAGF,wCACE,aACA,gBACA,cACA,eAAA,CAGF,+CACE,gBACA,cACA,gBAAA,CAGF,+CACE,gBACA,cACA,gBAAA,CAGF,0CACE,aACA,kBACA,YACA,OAAA,CAGF,+CACE,yBACA,YACA,kBACA,YACA,kBACA,gBACA,aAAA,CAGF,kDACE,eACA,oCACA,AADA,4BACA,iBAAA,CAGF,qDACE,qBACA,aAAA,CAGF,gDACE,cACA,oCACA,AADA,4BACA,iBAAA,CAGF,+CACE,aAAA,CAGF,4BACE,qBAAA,CAGF,sCACE,8BACA,AADA,sBACA,WACA,aACA,gBACA,gBACA,aAAA,CAGF,gDACE,cACA,gBACA,kBAAA,CAGF,2CACE,gBACA,UAAA,CAGF,0DACE,WACA,gBACA,qBACA,iBAAA,CAGF,6CACE,oBACA,4BAAA,CAGF,sDACE,gBACA,WACA,YACA,aACA,sBACA,2BAAA,kBAAA,CAGF,sDACE,aACA,aAAA,CAGF,4DACE,WACA,YACA,2BAAA,kBAAA,CAGF,mDACE,aACA,gBACA,WACA,cACA,eAAA,CAGF,0DACE,eAAA,CAGF,wDACE,gBACA,UAAA,CAGF,sBACE,8BACA,AADA,sBACA,WACA,aACA,yBACA,eACA,SACA,gBACA,yBAAA,CAGF,8BACE,aAAA,CAIF,gCACE,gBACA,cACA,iBAAA,CAGF,6BACE,eAAA,CAGF,kCACE,WACA,gBACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAGF,mCACE,gBACA,WACA,4BACA,AADA,oBACA,sBACA,aACA,aACA,kBACA,iBAAA,CAGF,wCACE,iBAAA,CAIF,cACE,gBACA,cACA,iBAAA,CAGF,oBACE,kBACA,OACA,QACA,cACA,WACA,WACA,cACA,WACA,kCACA,AADA,0BACA,wBAAA,CAGF,+BACE,aACA,aAAA,CAGF,qCACE,WACA,YACA,0BACA,AADA,kBACA,yBAAA,CAGF,4BACE,aACA,WACA,kBACA,eAAA,CAGF,kCACE,gBACA,iBACA,WAAA,CAGF,oCACE,gBACA,aACA,iCACA,gBACA,4BACA,AADA,oBACA,iBAAA,CAGF,0CACE,YACA,aACA,gBACA,iBAAA,CAGF,gCACE,4BACA,gBACA,gBAAA,CAGF,0CACE,gBACA,iBAAA,CAGF,2BACE,gBACA,WACA,iBAAA,CAGF,eACE,eAAA,CAGF,oBACE,sBACA,2BACA,AADA,mBACA,aAAA,CAGF,0BACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,WACA,iBAAA,CAIF,+BACE,aAAA,CAIF,sCACE,kBACA,WACA,OACA,UACA,aACA,sBACA,QACA,iBAAA,CAGF,+BACE,iBACA,gBACA,aAAA,CAGF,wBACE,sBACA,4BACA,AADA,oBACA,gBAAA,CAGF,gEAEE,aACA,gBACA,8BACA,gBACA,aAAA,CAGF,yCACE,gBACA,UAAA,CAGF,mDACE,gBACA,gBAAA,CAGF,oCACE,aAAA,CAGF,0CACE,gBACA,cACA,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,iBAAA,CAGF,mDACE,YACA,aACA,wBAAA,CAGF,yDACE,WACA,WAAA,CAGF,0BACE,sBACA,iBACA,4BAAA,mBAAA,CAGF,uCACE,sBAAA,CAGF,6CACE,WACA,gBACA,gBACA,WACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,oBACA,iBAAA,CARF,uDAWI,gBACA,UAAA,CAGF,oDACE,WACA,cACA,kBACA,WACA,QACA,SACA,iCACA,YACA,WAAA,CAKJ,sDACE,YACA,aACA,kBAAA,CAGF,mDACE,mBAAA,eAAA,WAAA,MAAA,CAGF,4DACE,WACA,WAAA,CAGF,eACE,aACA,aACA,kBACA,aAAA,CAIF,sBACE,qBAAA,CAGF,6BACE,eACA,iBAAA,CAGF,oCACE,gBACA,gBAAA,CAGF,yCACE,eAAA,CAGF,+CACE,cACA,iBAAA,CAGF,2CACE,YACA,aACA,gBAAA,CAGF,+CACE,cACA,iBAAA,CAGF,uCACE,cACA,gBACA,mBAAA,CAGF,iCACE,gBACA,iBACA,0BAAA,CAGF,6BACE,2BACA,gBACA,cACA,oBAAA,CAGF,8BACE,gBACA,6BACA,aACA,gBACA,aAAA,CAGF,oCACE,aACA,aACA,iBAAA,CAGF,wCACE,aACA,gBACA,yBACA,cACA,gBACA,kBACA,kBACA,0BAAA,CAGF,+CACE,YACA,kBACA,WACA,aACA,oCACA,AADA,4BACA,yBACA,sBACA,WACA,WACA,oBACA,sBAAA,CAGF,8CACE,YACA,kBACA,WACA,aACA,oCACA,AADA,4BACA,yBACA,sBACA,YACA,WACA,oBACA,uBAAA,CAGF,wCACE,cACA,eAAA,CAGF,wBACE,sBACA,gBACA,gBACA,cACA,iBACA,YAAA,CAGF,kCACE,gBACA,aAAA,CAGF,kCACE,gBACA,aAAA,CAGF,6BACE,iBACA,qBAAA,CAGF,oCACE,aACA,6BACA,gBACA,cACA,kBACA,mBAAA,CAGF,4CACE,gBACA,aAAA,CAGF,sDACE,cACA,gBACA,oBACA,gBAAA,CAGF,4BACE,gBAAA,CAGF,mCACE,gBACA,cACA,aACA,WACA,sBACA,kBACA,iBAAA,CAGF,oCACE,UAAA,CAGF,sCACE,sBACA,wBAAA,CAIF,qBACE,8BACA,AADA,sBACA,wBACA,eACA,SACA,WACA,cACA,sBACA,WACA,4BAAA,CAGF,2BACE,gBACA,WACA,eAAA,CAGF,qCACE,kBACA,gBACA,aACA,iBAAA,CAGF,oDACE,iBAAA,CAGF,yDACE,WACA,kBACA,gBACA,6BACA,AADA,qBACA,WACA,QACA,aACA,kBACA,eACA,eAAA,CAGF,0BACE,aACA,aACA,WACA,eAAA,CAGF,+BACE,aACA,kBACA,iBAAA,CAGF,oCACE,sCACA,AADA,8BACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAIpB,+BACE,sCACA,AADA,8BACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,sCACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,iBAAA,CAFF,2CAKI,WACA,4BAAA,mBAAA,CAMJ,wBACE,WACA,WAAA,CAGF,8BACE,WACA,YACA,aAAA,CAGF,2BACE,oBACA,qBAAA,CAGF,uCACE,aACA,gBACA,UAAA,CAGF,6CACE,gBACA,cACA,iBACA,mBAAA,CAGF,oDACE,iBAAA,CAGF,gDACE,kBAAA,CAGF,mDACE,WACA,eAAA,CAGF,qCACE,gBACA,aAAA,CAGF,2BACE,sBACA,gBAAA,CAGF,iCACE,oBACA,gBACA,cACA,+BAAA,CAGF,2CACE,gBACA,WACA,aACA,gBAAA,CAGF,qDACE,kBAAA,CAGF,mEACE,QACA,UAAA,CAGF,qDACE,cACA,gBACA,iBAAA,CAGF,gDACE,gBACA,kBAAA,CAGF,0CACE,8BACA,AADA,sBACA,yBACA,WACA,cACA,2BACA,AADA,mBACA,iBACA,mBAAA,CAGF,qEACE,UAAA,CAGF,AAJA,4DACE,UAAA,CAGF,AAJA,gEACE,UAAA,CAGF,AAJA,iEACE,UAAA,CAGF,AAJA,uDACE,UAAA,CAGF,uCACE,gBAAA,CAGF,gDACE,sBACA,2BACA,AADA,mBACA,aACA,WACA,iBACA,gBACA,aAAA,CAGF,mDACE,qBACA,aAAA,CAGF,sDACE,UACA,kBACA,2BAAA,CAGF,gEACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,kBACA,yBACA,WACA,gBACA,kBAAA,CAGF,6EACE,wBAAA,CAGF,gFACE,wBAAA,CAGF,qDACE,UACA,kBACA,gBACA,UAAA,CAGF,6BACE,iBACA,sBACA,aAAA,CAGF,mCACE,gBACA,aAAA,CAGF,yCACE,gBAAA,CAGF,0CACE,aAAA,CAGF,0BACE,8BACA,AADA,sBACA,WACA,cACA,sBACA,gBACA,gBACA,WACA,eACA,SACA,MAAA,CAGF,sCACE,gBACA,WACA,aACA,aACA,yBACA,4BACA,AADA,oBACA,kBACA,iBAAA,CAIF,0BACE,WACA,WAAA,CAGF,gCACE,WACA,YACA,aAAA,CAGF,0BACE,sBACA,gBACA,mBAAA,CAGF,mCACE,gBACA,6BACA,gBACA,aAAA,CAGF,8CACE,gBACA,iBACA,kBAAA,CAGF,qDACE,iBAAA,CAGF,qCACE,aACA,gBACA,aAAA,CAGF,8CACE,iBAAA,CAGF,+CACE,cACA,gBACA,qBACA,kBAAA,CAGF,4DACE,kBACA,eAAA,CAGF,4BACE,8BACA,AADA,sBACA,eACA,WACA,sBACA,SACA,cACA,eAAA,CAGF,wCACE,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,gBACA,UAAA,CAGF,2CACE,aACA,aAAA,CAGF,kDACE,gBACA,kBACA,oBAAA,CAGF,8CACE,wBAAA,CAIF,kBACE,qBAAA,CAGF,wBACE,gBACA,iBACA,2BACA,eAAA,CAGF,8BACE,aACA,UAAA,CAGF,8BACE,aACA,eAAA,CAGF,yDACE,UAAA,CAGF,AAJA,gDACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,qDACE,UAAA,CAGF,AAJA,2CACE,UAAA,CAGF,gCACE,YAAA,CAGF,iCACE,YAAA,CAGF,0CACE,eAAA,CAGF,qBACE,gBACA,aACA,sBACA,gBAAA,CAGF,0BACE,kBACA,aACA,gBACA,aAAA,CAGF,qBACE,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,6BACA,gBACA,UAAA,CAGF,2BACE,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,cACA,gBACA,cACA,wBAAA,CAIF,kBACE,cACA,eAAA,CAGF,0BACE,aAAA,CAGF,gCACE,4BACA,gBACA,gCAAa,CAGf,sCACE,gBACA,iBACA,WACA,mBAAA,CAGF,mCACE,aACA,aAAA,CAGF,yCACE,WACA,WAAA,CAGF,eACE,sBACA,aACA,cACA,2BACA,AADA,mBACA,yBAAA,CAGF,qBACE,kBACA,gBACA,cACA,uBAAA,CAGF,wBACE,iBACA,gCAAA,CAGF,0BACE,gBAAA,CAGF,gBACE,aACA,wBAAA,CAGF,sBACE,sBACA,2BACA,AADA,mBACA,mBAAA,CAGF,6BACE,aACA,gBACA,8BACA,gBACA,aAAA,CAGF,mCACE,gBACA,eACA,aACA,kBAAA,CAGF,iCACE,gBACA,gBAAA,CAGF,0CACE,aACA,aAAA,CAGF,gDACE,WACA,YACA,2BAAA,kBAAA,CAGF,uCACE,aACA,gBACA,WACA,eAAA,CAGF,6CACE,aACA,aAAA,CAGF,8CACE,gBAAA,CAGF,kCACE,gBACA,cACA,iBACA,uBACA,wBACA,6BAAA,CAGF,yCACE,gBACA,gBAAA,CAGF,8BACE,cACA,eAAA,CAGF,mCACE,aACA,aACA,kBACA,kBACA,WACA,4BACA,AADA,oBACA,eAAA,CAGF,6CACE,sBACA,UAAA,CAGF,2CACE,WACA,qBAAA,CAGF,wCACE,iBAAA,CAIF,uBACE,gBACA,aAAA,CAGF,0BACE,gCAAA,CAGF,gCACE,aACA,aAAA,CAGF,sCACE,WACA,WAAA,CAGF,6BACE,4BACA,gBACA,iBAAA,CAGF,gCACE,aAAA,CAGF,oCACE,gBACA,iBACA,WACA,kBAAA,CAGF,mCACE,iBAAA,CAGF,oBACE,sBACA,gBACA,cACA,eAAA,CAGF,4BACE,eAAA,CAGF,gCACE,iBACA,aAAA,CAGF,8BACE,gBACA,gBAAA,CAGF,oCACE,aACA,YACA,wBAAA,CAGF,wCACE,gBACA,cACA,iBACA,YACA,aACA,kBACA,iBAAA,CAGF,wBACE,gBACA,cACA,sBACA,+BAAA,CAGF,8BACE,gBACA,cACA,mBAAA,CAGF,qCACE,iBAAA,CAGF,qBACE,WACA,WAAA,CAGF,2BACE,WACA,YACA,aAAA,CAGF,wBACE,sBACA,iBACA,aAAA,CAGF,8BACE,gBACA,aAAA,CAGF,oCACE,gBAAA,CAGF,sCACE,cACA,aACA,gBAAA,CAGF,4CACE,gBACA,WACA,2BACA,AADA,mBACA,sBACA,mBACA,iBAAA,CAGF,mCACE,2BACA,iBACA,iBAAA,CAGF,0CACE,iBACA,eAAA,CAGF,uBACE,8BACA,AADA,sBACA,WACA,cACA,eACA,SACA,OACA,sBACA,gBACA,yBAAA,CAGF,4BACE,aACA,aACA,kBACA,kBACA,4BACA,AADA,oBACA,WACA,eAAA,CAGF,mCACE,WACA,qBAAA,CAGF,oCACE,WACA,qBAAA,CAGF,iCACE,iBAAA,CAIF,mBACE,oBACA,sBACA,aAAA,CAGF,4BACE,aACA,aAAA,CAGF,kCACE,WACA,YACA,2BAAA,kBAAA,CAGF,yBACE,aACA,gBACA,WACA,eAAA,CAGF,+BACE,aACA,aAAA,CAGF,gCACE,gBAAA,CAGF,yBACE,sBACA,cAAA,CAGF,kCACE,cACA,uBACA,oBACA,+BAAA,CAGF,0CACE,YAAA,CAGF,oDACE,YACA,aACA,sBACA,kBACA,kBACA,WACA,eAAA,CAGF,gDACE,aACA,gBACA,aAAA,CAGF,sDACE,UAAA,CAGF,yDACE,eAAA,CAGF,wCACE,gBACA,aACA,aACA,2BACA,AADA,mBACA,qBAAA,CAGF,+BACE,gBACA,iBAAA,CAGF,yCACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,UACA,aACA,qBAAA,CAGF,4CACE,wBAAA,CAGF,qCACE,gBACA,WACA,aACA,8BACA,uBAAA,CAGF,wCACE,yBAAA,CAGF,2CACE,gBACA,WACA,gBAAA,CAGF,iDACE,iBAAA,CAIF,gBACE,sBACA,0BACA,4BACA,AADA,oBACA,uBACA,aACA,SACA,mBAAA,CAGF,0BACE,gBACA,aACA,cACA,0BACA,AADA,kBACA,WACA,kBACA,mBACA,4BACA,0BACA,0BACA,qBAAA,CAGF,+BACE,2BAAA,CAGF,wBACE,gBACA,iBACA,kBACA,sBAAA,CAGF,yBACE,sBACA,2BACA,gBACA,cACA,cAAA,CAGF,+BACE,gBACA,aAAA,CAGF,qCACE,gBAAA,CAGF,wCACE,UAAA,CAGF,2BACE,aACA,aACA,4BACA,AADA,oBACA,WACA,gBACA,kBACA,kBACA,wBAAA,CAIF,wBACE,eACA,sBACA,+BAAA,CAGF,+BACE,oBACA,gBACA,aAAA,CAGF,wCACE,WAEA,yBACA,4BACA,AADA,oBACA,iBAAA,CAIF,2CACE,kCACA,AADA,0BACA,qBAAA,CAGF,gDACE,YAAA,CAGF,yDACE,YACA,aACA,iBAAA,CAGF,+DACE,WACA,YACA,0BAAA,iBAAA,CAGF,6DACE,WACA,YACA,0BAAA,iBAAA,CAGF,gEACE,YACA,aACA,0BACA,AADA,kBACA,kBACA,SACA,OAAA,CAGF,sDACE,YAAA,CAGF,4DACE,WACA,gBACA,aAAA,CAGF,6DACE,gBACA,WACA,gBAAA,CAGF,6CACE,gBACA,sBACA,4BACA,AADA,oBACA,aACA,aACA,yBAAA,CAGF,oDACE,kBACA,QACA,MACA,gBACA,qCACA,aACA,aACA,sCAAA,6BAAA,CAGF,qBACE,qBAAA,CAGF,2BACE,4BACA,gCACA,kBACA,gBACA,aAAA,CAGF,oCACE,YACA,YAAA,CAGF,0CACE,WACA,YACA,0BAAA,iBAAA,CAGF,kCACE,aACA,iBACA,aAAA,CAGF,wCACE,cACA,iBACA,UAAA,CAGF,sCACE,YAAA,CAGF,4CACE,eAAA,CAGF,0DACE,gBACA,iBAAA,CAGF,0BACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,wBAAA,CAGF,uBACE,gBACA,kBACA,aACA,aACA,4BACA,AADA,oBACA,4BAAA,CAIF,oBACE,aACA,gBACA,cACA,kBACA,iBAAA,CAGF,8BACE,gBACA,qBACA,kBAAA,CAGF,uBACE,aACA,YACA,aAAA,CAGF,6BACE,WACA,YACA,aAAA,CAIF,qCACE,WACA,8BACA,AADA,sBACA,YACA,cACA,iBAAA,CAGF,mDACE,wBACA,WAAA,CAGF,mCACE,WACA,YACA,4BAAA,mBAAA,CAGF,4BACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAIF,uBACE,yBACA,WACA,eAAA,CAGF,sCACE,aAAA,CAGF,oDACE,wBACA,cACA,4BACA,AADA,oBACA,WACA,kBACA,4BACA,kCAAA,yBAAA,CAGF,6DACE,wEAAsB,CAGxB,yDACE,oEAAsB,CAGxB,2DACE,sEAAsB,CAGxB,0DACE,qEAAsB,CAGxB,2DACE,sEAAsB,CAGxB,6DACE,wEAAsB,CAGxB,0DACE,YACA,cACA,cACA,kBACA,WAAA,CAGF,0DACE,gBACA,iBACA,uBAAA,CAGF,8DACE,gBACA,iBACA,qBAAA,CAGF,wEACE,kBACA,eAAA,CAGF,yDACE,gBAAA,CAGF,+DACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,4BACA,iBAAA,CAGF,oEACE,gBACA,WACA,gCAAa,CAGf,6EACE,kBACA,WACA,aACA,uCACA,WACA,OACA,QACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,0DACE,gBACA,sBAAA,CAGF,oEACE,gBACA,mBACA,oBAAA,CAGF,wBACE,sBACA,qBACA,mBAAA,CAGF,+BACE,aACA,gBACA,gBACA,iBACA,aAAA,CAGF,yCACE,cACA,mBACA,gBACA,mBACA,oBAAA,CAGF,oCACE,gBACA,UAAA,CAGF,6CACE,aAAA,CAGF,oCACE,aACA,cACA,yBACA,yBACA,wBACA,4BAAA,mBAAA,CAGF,yCACE,oBACA,gBACA,UAAA,CAGF,+CACE,+BACA,mBACA,gBACA,cACA,gBAAA,CAGF,yDACE,WACA,gBACA,qBACA,iBAAA,CAGF,iDACE,gBACA,aACA,sBACA,aACA,4BACA,AADA,oBACA,wBAAA,CAGF,yDACE,QACA,YACA,kCACA,AADA,6BACA,AADA,0BACA,yBACA,4BAAA,mBAAA,CAGF,gDACE,iBACA,gBACA,gBACA,UAAA,CAGF,qDACE,aAAA,CAGF,4BACE,sBACA,4BACA,AADA,oBACA,eACA,WACA,SACA,aACA,cACA,oBACA,WACA,2CACA,AADA,mCACA,yDAAoB,AAApB,oDAAoB,AAApB,gDAAoB,CAGtB,+BACE,uCAAW,AAAX,8BAAW,CAGb,qCACE,WACA,cACA,iBAAA,CAGF,2CACE,WACA,YACA,sCAAA,6BAAA,CAGF,oCACE,gBACA,gBACA,WACA,iBACA,gBACA,cACA,aAAA,CAGF,+CACE,kBACA,gBACA,WACA,WACA,SACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAIb,0BACE,2EACA,4BACA,kCACA,AADA,0BACA,WACA,cACA,gBACA,WACA,wBACA,kBACA,gCAAa,CAGf,wCACE,gBACA,4BACA,kBACA,kBAAA,CAGF,gCACE,YACA,YACA,sBACA,wBAAA,CAGF,+BACE,gBACA,4BACA,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,gBAAA,CAGF,qCACE,aACA,iBAAA,CAGF,0CACE,WACA,eAAA,CAGF,gCACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,aACA,sCACA,AADA,8BACA,0BACA,yBACA,aACA,gBACA,UAAA,CAGF,sCACE,kBACA,UAAA,CAIF,yCACE,sBACA,cACA,iBACA,sCAAA,6BAAA,CAGF,gDACE,gBACA,kBAAA,CAGF,iCACE,sBACA,mBAAA,CAGF,sCACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,yBACA,yBACA,cACA,gBACA,mBAAA,CAGF,gDACE,gBACA,kBAAA,CAGF,uCACE,cACA,6BACA,gBACA,UAAA,CAGF,8CACE,gBACA,cACA,kBAAA,CAGF,4CACE,gBACA,iCACA,aAAA,CAGF,kCACE,sBACA,eAAA,CAGF,wCACE,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,aACA,cACA,kBACA,4BACA,AADA,oBACA,yBACA,wBAAA,CAGF,iDACE,YACA,cACA,kBACA,SACA,UAAA,CAGF,uDACE,WACA,WAAA,CAGF,8CACE,aACA,gBACA,iBACA,aAAA,CAGF,8CACE,gBACA,cACA,0BACA,kBACA,kBACA,aACA,aACA,4BAAA,mBAAA,CAIF,0BACE,cACA,gBACA,cACA,wBAAA,CAGF,gCACE,aACA,YACA,wBAAA,CAGF,gCACE,cAAA,CAGF,0CACE,mBACA,gBACA,oBAAA,CAIF,6BACE,gBACA,WACA,eACA,UACA,WACA,UAAA,CAGF,sBACE,4BACA,kCACA,AADA,0BACA,aACA,aAAA,CAGF,oBACE,4BACA,AADA,oBACA,8BAAA,CAGF,0BACE,6BACA,kBACA,cACA,sBACA,gBACA,wBAAA,CAGF,mCACE,aACA,aAAA,CAGF,yCACE,WACA,YACA,2BAAA,kBAAA,CAGF,gCACE,aACA,gBACA,cACA,aAAA,CAGF,qCACE,gBACA,UAAA,CAGF,+CACE,gBACA,iBAAA,CAGF,uCACE,gBACA,gBAAA,CAGF,8CACE,eAAA,CAGF,kCACE,kBACA,aACA,aACA,4BACA,AADA,oBACA,gBACA,WACA,kBACA,kBACA,YACA,aACA,oCACA,AADA,4BACA,iCACA,8BAAA,CAGF,4CACE,kBACA,eAAA,CAGF,0BACE,gBACA,aACA,kBACA,iBAAA,CAIF,wBACE,gBACA,WACA,eACA,UACA,WACA,UAAA,CAGF,iBAEE,4BACA,kCACA,AADA,0BACA,aACA,cACA,cACA,kBACA,gBAAA,CAGF,oBACE,oEAAsB,CAGxB,yBACE,0BACA,gBACA,UAAA,CAGF,kCACE,YACA,aACA,kBAAA,CAGF,wCACE,WACA,YACA,0BACA,AADA,kBACA,sBAAA,CAGF,oCACE,iBAAA,CAGF,uBACE,4BACA,kCACA,AADA,0BACA,aACA,cACA,yBACA,gBACA,kBACA,iBACA,aAAA,CAGF,yBACE,kBACA,WACA,gBACA,gBAAA,CAGF,iCACE,UAAA,CAGF,+DAGE,aACA,0BACA,sBACA,4BACA,AADA,oBACA,2BACA,4BACA,iBAAA,CAGF,0BACE,sBAAA,CAGF,mCACE,aACA,cACA,iBAAA,CAIF,yCACE,WACA,YACA,2BAAA,kBAAA,CAGF,gCACE,aACA,gBACA,cACA,aAAA,CAGF,uCACE,iBACA,eAAA,CAGF,4CACE,eAAA,CAGF,4CACE,gBACA,WACA,kBAAA,CAGF,+BACE,gBACA,aACA,sBACA,WACA,4BAAA,mBAAA,CAGF,uCACE,QACA,YACA,kCACA,AADA,6BACA,AADA,0BACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,2BACE,gBACA,WACA,gBAAA,CAGF,kCACE,gBACA,cACA,iBAAA,CAGF,4CACE,gBACA,cACA,oBACA,oBAAA,CAGF,8BACE,gBACA,iBACA,WACA,WACA,aACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,kBACA,kBACA,gBAAA,CAGF,iCACE,0BACA,cACA,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,oEACA,WACA,YAAA,CAGF,uBACE,gBACA,WACA,kBACA,gBAAA,CAGF,iFAGE,qEACA,4BACA,kCACA,AADA,0BACA,aACA,aACA,kBACA,SACA,mCACA,AADA,+BACA,AADA,2BACA,cACA,SAAA,CAGF,sBACE,wBAAA,CAGF,2DAEE,gBACA,iBACA,aACA,gBAAA,CAGF,6EAEE,YACA,YAAA,CAGF,mFAEE,iCAAW,AAAX,6BAAW,AAAX,wBAAW,CAGb,yFAEE,WACA,YACA,aAAA,CAGF,+EAEE,cAAA,CAGF,kCACE,8BACA,aAAA,CAGF,0CACE,YAAA,CAGF,mDACE,YACA,YAAA,CAGF,yDACE,WACA,YACA,0BACA,AADA,kBACA,0BAAA,CAGF,gDACE,aACA,gBACA,UAAA,CAGF,sDACE,gBACA,cACA,kBAAA,CAGF,yCACE,eAAA,CAGF,mDACE,gBACA,sBACA,kBAAA,CAGF,4BACE,gBACA,kBACA,kBACA,YAAA,CAGF,uBACE,wBAAA,CAGF,qCACE,mBAAA,CAGF,+BACE,gBAAA,CAGF,qCACE,sBACA,aAAA,CAGF,qBACE,eACA,QACA,SACA,aACA,oBACA,WACA,4BACA,AADA,oBACA,sBACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BACA,AADA,uBACA,AADA,mBACA,qBACA,kBAAA,CAGF,wBACE,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,8BACE,WACA,cACA,iBAAA,CAGF,wCACE,kBACA,YACA,UACA,WACA,gBACA,YACA,aACA,kBACA,iBAAA,CAGF,oCACE,WACA,YACA,sCAAA,6BAAA,CAGF,6BACE,gBACA,WACA,gBACA,kBACA,gBAAA,CAGF,gCACE,gBAAA,CAGF,2BACE,gBACA,iBACA,kBACA,gBAAA,CAGF,6BACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,kBACA,kBACA,wBAAA,CAIF,sBACE,sBACA,mBAAA,CAGF,8BACE,cACA,gCACA,eAAA,CAGF,uCACE,aACA,aAAA,CAGF,6CACE,WACA,YACA,2BAAA,kBAAA,CAGF,oCACE,aACA,gBACA,cACA,aAAA,CAGF,0CACE,gBACA,aAAA,CAGF,oDACE,aAAA,CAGF,2CACE,eAAA,CAGF,gDACE,gBACA,gBAAA,CAGF,mDACE,gBAAA,CAGF,8BACE,cACA,gBACA,eAAA,CAGF,sCACE,aAAA,CAGF,mCACE,UAAA,CAGF,uCACE,aAAA,CAGF,mCACE,gBACA,WACA,aACA,aACA,2BACA,AADA,mBACA,kBACA,iBAAA,CAGF,0CACE,WACA,qBAAA,CAGF,wCACE,iBAAA,CAIF,oBACE,4BACA,kCACA,AADA,0BACA,WACA,aAAA,CAGF,0BACE,WACA,aAAA,CAOF,wBACE,aACA,cACA,sBACA,2BACA,AADA,mBACA,gBACA,wBAAA,CAGF,iCACE,aACA,aAAA,CAGF,uCACE,WACA,YACA,2BAAA,kBAAA,CAGF,8BACE,aACA,gBACA,aAAA,CAGF,oCACE,aACA,2BACA,AADA,mBACA,gBACA,gBAAA,CAGF,8CACE,YACA,yBACA,kBACA,cACA,YACA,iBAAA,CAGF,yCACE,kBACA,eAAA,CAGF,sCACE,eAAA,CAGF,6CACE,gBACA,iBACA,aAAA,CAGF,kDACE,eAAA,CAGF,sDACE,gBACA,WACA,mBACA,6BACA,iBAAA,CAGF,gDACE,gBACA,WACA,aACA,aACA,kBACA,kBACA,2BAAA,kBAAA,CAGF,0DACE,gBACA,iBAAA,CAIF,6CACE,cACA,kBACA,6BACA,kBAAA,CAGF,qBACE,WACA,aACA,yBACA,iBACA,gBACA,8BAAA,qBAAA,CAGF,0BACE,eAAA,CAGF,oCACE,gBACA,qBACA,kBAAA,CAGF,gCACE,cACA,iBAAA,CAGF,6BACE,YACA,aACA,kBACA,gBACA,iBAAA,CAGF,oCACE,WAAA,CAGF,2CACE,WAAA,CAGF,oCACE,YACA,gBACA,gBACA,aAAA,CAGF,uBACE,qBAAA,CAGF,6BACE,oBACA,kBACA,gCACA,aAAA,CAGF,qCACE,YAAA,CAGF,2CACE,YAAA,CAGF,8CACE,YACA,YAAA,CAGF,oDACE,WACA,YACA,0BAAA,iBAAA,CAGF,0CACE,gBACA,cACA,gBAAA,CAGF,0CACE,gBACA,cACA,eAAA,CAGF,8CACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,kBACA,kBACA,iBAAA,CAGF,wDACE,gBACA,gBAAA,CAGF,6BACE,gBACA,cACA,kBACA,aACA,iBAAA,CAGF,uCACE,kBACA,eAAA,CAGF,sBACE,sBACA,gBACA,iBACA,gBACA,aAAA,CAGF,6BACE,aACA,4BAAA,CAGF,uCACE,kBACA,gBACA,aAAA,CAGF,2BACE,kBACA,gBACA,aAAA,CAGF,qCACE,cACA,gBACA,cAAA,CAGF,sCACE,gBACA,iBAAA,CAGF,sCACE,gBACA,aAAA,CAGF,2BACE,eACA,SACA,WACA,cACA,sBACA,gBACA,WACA,UAAA,CAGF,wCACE,UACA,gBACA,UAAA,CAGF,kDACE,eAAA,CAGF,gCACE,UACA,kBACA,mBACA,YACA,WACA,eAAA,CAGF,gEACE,qBAAA,CAGF,uEACE,wBAAA,CAGF,8FACE,QAAA,CAIF,mBACE,WACA,cACA,sBACA,6BACA,gBACA,iBAAA,CAGF,6BACE,iBACA,kBACA,WACA,YACA,YAAA,CAGF,4BACE,aACA,aAAA,CAGF,kCACE,WACA,YACA,2BAAA,kBAAA,CAGF,yBACE,aACA,gBACA,UAAA,CAGF,gCACE,gBACA,iBACA,gBAAA,CAGF,qCACE,eAAA,CAGF,sCACE,mBACA,mBACA,4BACA,AADA,oBACA,gBACA,oBACA,iBAAA,CAGF,oBACE,sBACA,iBACA,sBAAA,CAGF,2BACE,gBAAA,CAGF,iCACE,aACA,WACA,qBAAA,CAGF,iCACE,eACA,gBACA,aAAA,CAGF,uCACE,cAAA,CAGF,0CACE,aAAA,CAGF,iDACE,yBACA,kBACA,2BACA,AADA,mBACA,gBACA,iBACA,qBACA,sBACA,cACA,iBAAA,CAGF,0BACE,gBACA,iBACA,kBACA,iBACA,UAAA,CAGF,0BACE,gBACA,gBAAA,CAGF,iCACE,kBACA,eAAA,CAGF,oCACE,kBAAA,CAGF,mCACE,YACA,aACA,sBAAA,CAGF,yCACE,WACA,YACA,0BACA,AADA,kBACA,yBAAA,CAGF,gDACE,WAAA,CAGF,6BACE,gBACA,cACA,iBAAA,CAGF,uCACE,gBACA,qBAAA,CAGF,6BACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,WACA,wBAAA,CAGF,2DAEE,kBACA,gBACA,cACA,iBAAA,CAGF,sCACE,gBACA,cACA,qBACA,iBAAA,CAGF,yCACE,gBACA,cACA,iBAAA,CAGF,4BACE,sBACA,gBAAA,CAGF,mCACE,oBACA,kBACA,aACA,6BACA,gBACA,aAAA,CAGF,yCACE,aAAA,CAGF,mDACE,kBACA,eAAA,CAGF,kCACE,gBAAA,CAGF,wCACE,aACA,sBAAA,CAGF,iDACE,WACA,cACA,iBAAA,CAGF,uDACE,WACA,YACA,4BAAA,mBAAA,CAGF,uDACE,kBACA,UACA,WACA,iBACA,aACA,kBACA,kBACA,sCACA,AADA,8BACA,gBACA,WACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,8CACE,gBACA,WACA,gBAAA,CAGF,+CACE,iBACA,eAAA,CAIF,+BACE,aACA,gBACA,sBACA,gBACA,aAAA,CAGF,yCACE,iBAAA,CAGF,oBACE,gBACA,cACA,4BACA,sBACA,+BAAA,CAGF,0BACE,gBACA,cACA,2BACA,AADA,mBACA,aACA,gBACA,yBACA,kBACA,sBAAA,CAGF,uCACE,UAAA,CAIF,qBACE,sBACA,6BACA,gBACA,cACA,+BAAA,CAGF,iCACE,gBAAA,CAGF,sCACE,uBAAA,CAGF,gDACE,gBACA,UAAA,CAGF,0DACE,iBAAA,CAGF,qCACE,WACA,eAAA,CAGF,+BACE,aACA,yBACA,4BACA,AADA,oBACA,gBAAA,CAGF,wCACE,gBACA,4BACA,WACA,aAAA,CAGF,mEACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,8DACE,UAAA,CAGF,AAJA,+DACE,UAAA,CAGF,AAJA,qDACE,UAAA,CAGF,qCACE,iBACA,iBAAA,CAGF,8CACE,aACA,cACA,uBACA,kBACA,gBACA,UAAA,CAGF,oDACE,WACA,YACA,2BAAA,kBAAA,CAGF,4DACE,gBACA,kBACA,WACA,YAAA,CAGF,8DACE,cACA,eAAA,CAGF,kCACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,gBAAA,CAIF,cACE,WACA,aAAA,CAGF,yBACE,oBACA,aAAA,CAGF,+BACE,aACA,gBACA,WACA,gBAAA,CAGF,8CACE,gBACA,iBACA,yBACA,kBACA,2BACA,AADA,mBACA,mBACA,kBAAA,CAGF,+BACE,YAAA,CAGF,wCACE,YACA,aACA,0BACA,AADA,kBACA,yBAAA,CAGF,8CACE,WACA,YACA,0BAAA,iBAAA,CAGF,gCACE,aACA,aACA,sBACA,sCACA,AADA,8BACA,gBACA,aAAA,CAGF,0CACE,gBACA,wBACA,aACA,iBAAA,CAGF,eACE,sBACA,4BACA,4BACA,AADA,oBACA,qBACA,iBAAA,CAGF,qBACE,gBACA,aAAA,CAGF,2BACE,gBACA,cACA,iBAAA,CAGF,sCACE,YACA,aACA,yBACA,4BACA,AADA,oBACA,gBACA,cACA,iBAAA,CAGF,gCACE,gBACA,UAAA,CAGF,mCACE,aAAA,CAGF,kCACE,uEACA,4BACA,kCACA,AADA,0BACA,YACA,aACA,cAAA,CAGF,8CACE,sEAAsB,CAGxB,yCACE,uEACA,YACA,YAAA,CAGF,oBACE,aACA,aACA,gBACA,kBACA,WACA,4BACA,AADA,oBACA,kBACA,aAAA,CAGF,uBACE,gCAAA,CAGF,qBACE,sEACA,4BACA,kCACA,AADA,0BACA,aACA,aACA,kBACA,SACA,mCACA,AADA,+BACA,AADA,2BACA,cACA,SAAA,CAGF,gBACE,iBACA,mBAAA,CAGF,qBACE,gBACA,WACA,iBAAA,CAGF,uBACE,sBAAA,CAGF,6BACE,YACA,cACA,4BACA,kCACA,AADA,0BACA,WACA,gBACA,kBACA,mBACA,mBACA,qEAAsB,CAGxB,6BACE,gBACA,aAAA,CAGF,sBACE,gBACA,cACA,gBACA,kBACA,eAAA,CAGF,aACE,2BACA,0BAAA,CAGF,mBACE,6BACA,aAAA,CAGF,yBACE,cACA,gBACA,YAAA,CAGF,yBACE,gBACA,cACA,eAAA,CAGF,wBACE,gBACA,gCAAa,CAGf,eACE,aACA,cACA,eACA,QACA,SACA,oBACA,qBACA,WACA,kBACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,6BACE,4BACA,kCACA,AADA,0BACA,WACA,WAAA,CAGF,kBACE,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,2BACE,yEACA,4BACA,kCACA,AADA,0BACA,aACA,cACA,mBACA,iBAAA,CAGF,kCACE,gBACA,WACA,iBAAA,CAGF,qCACE,gBACA,4BACA,eAAA,CAGF,uCACE,gBACA,cACA,aACA,aACA,yBACA,4BACA,AADA,oBACA,kBACA,wBAAA,CAIF,+BACE,aACA,kBACA,gBACA,gBACA,UAAA,CAGF,gCACE,sBACA,gBACA,UAAA,CAGF,uCACE,cACA,6BACA,oBACA,iBAAA,CAGF,6CACE,aACA,gBACA,cACA,kBAAA,CAGF,4CACE,gBACA,iCACA,aAAA,CAIF,oBACE,sBACA,gBAAA,CAGF,0BACE,kBACA,oBACA,iBACA,6BACA,gBACA,UAAA,CAGF,+BACE,cACA,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,iBACA,iBAAA,CAGF,uCACE,gBAAA,CAGF,yCACE,WACA,gBACA,kBACA,QACA,QACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,mCACE,2BAAA,CAGF,mCACE,cACA,eAAA,CAGF,8DACE,UAAA,CAGF,AAJA,qDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,gDACE,UAAA,CAGF,iCACE,aACA,UAAA,CAGF,sCACE,gBACA,UAAA,CAGF,kCACE,oBAAA,CAGF,2CACE,uBACA,aACA,cACA,kBACA,gBACA,WACA,qBAAA,CAGF,2DACE,cAAA,CAGF,iDACE,WACA,YACA,2BAAA,kBAAA,CAGF,yDACE,kBACA,gBACA,WACA,aACA,YACA,aACA,iBAAA,CAGF,2DACE,cACA,gBACA,YACA,aACA,iBAAA,CAGF,6DACE,qBAAA,CAGF,yBACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,iBAAA,CAIF,0BACE,sBACA,oBACA,iBAAA,CAGF,oCACE,gBACA,6BACA,aACA,kBACA,gBACA,aAAA,CAGF,gCACE,eAAA,CAGF,oCACE,4BACA,iBACA,gBACA,aAAA,CAGF,2CACE,gBACA,gBAAA,CAGF,oCACE,kBACA,iBACA,SACA,YACA,WACA,aACA,cACA,kBAAA,CAGF,2CACE,aAAA,CAIF,iBACE,sBACA,yBAAA,CAGF,uBACE,kBACA,oBACA,6BACA,aAAA,CAGF,gCACE,aACA,aAAA,CAGF,sCACE,WACA,YACA,2BAAA,kBAAA,CAGF,6BACE,aACA,cACA,gBACA,aAAA,CAGF,oCACE,UAAA,CAGF,oCACE,eAAA,CAGF,qCACE,gBACA,cACA,aACA,aACA,sBACA,2BACA,AADA,mBACA,kBACA,iBAAA,CAIF,oBACE,kBAAA,CAGF,oBACE,gBAAA,CAGF,2BACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,8BACA,AADA,sBACA,yBACA,4BACA,AADA,oBACA,gBACA,YAAA,CAGF,iCACE,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,gBACA,iBAAA,CAGF,4DACE,UAAA,CAGF,AAJA,mDACE,UAAA,CAGF,AAJA,uDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,8CACE,UAAA,CAGF,qCACE,WACA,eAAA,CAGF,yBACE,aACA,kBACA,aACA,kBACA,gBACA,aAAA,CAGF,mBACE,gBACA,WACA,8BAAA,CAGF,kBACE,kBAAA,CAGF,wBACE,gBACA,cACA,gBACA,aACA,2BACA,AADA,mBACA,kBACA,sBACA,sBAAA,CAGF,kBACE,6BACA,0BAAA,CAGF,iBACE,kBAAA,CAmDF,gCACE,eAAA,CAGF,sCACE,6BACA,cACA,gBACA,UAAA,CAGF,4CACE,YAAA,CAGF,6CACE,YAAA,CAGF,8EACE,UAAA,CAGF,AAJA,qEACE,UAAA,CAGF,AAJA,yEACE,UAAA,CAGF,AAJA,0EACE,UAAA,CAGF,AAJA,gEACE,UAAA,CAGF,qCACE,gBACA,WACA,gBAAA,CAGF,qCACE,gBACA,WACA,aACA,aACA,kBACA,4BACA,AADA,oBACA,kBACA,iBAAA,CAGF,sCACE,gBACA,WACA,kBACA,sBAAA,CAGF,uCACE,cACA,mBACA,6BACA,aACA,aAAA,CAGF,6CACE,gBACA,cACA,cACA,kBACA,UAAA,CAGF,wEACE,UAAA,CAIF,AALA,+DACE,UAAA,CAIF,AALA,mEACE,UAAA,CAIF,AALA,oEACE,UAAA,CAIF,AALA,0DACE,UAAA,CAIF,YACE,aACA,sBACA,2BACA,AADA,mBACA,yBACA,wBACA,SACA,mBAAA,CAGF,qBACE,aACA,cACA,aAAA,CAGF,2BACE,WACA,WAAA,CAGF,iBACE,gBACA,cACA,iBACA,kBACA,eAAA,CAGF,kBACE,gBACA,WACA,kBACA,gBAAA,CAGF,iBACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,wBAAA,CAIF,mCACE,cACA,gBACA,gBACA,UAAA,CAGF,yCACE,gBACA,cACA,kBAAA,CAGF,0CACE,qBAAA,CAGF,iDACE,gBAAA,CAGF,+CACE,kBACA,oBACA,6BACA,aAAA,CAGF,uDACE,YAAA,CAGF,6DACE,aACA,gBACA,aAAA,CAGF,gEACE,YACA,YAAA,CAGF,sEACE,WACA,YACA,0BACA,AADA,kBACA,uBACA,kCACA,AADA,0BACA,+BACA,6BACA,AACA,8BAAA,qBAAA,CAGF,sDACE,eAAA,CAGF,kDACE,oBACA,gBACA,WACA,eAAA,CAGF,wDACE,UAAA,CAIF,uBACE,oBAAA,CAGF,oBACE,sBACA,aACA,kBACA,gBACA,cACA,4BAAA,CAGF,0BACE,WAAA,CAGF,6BACE,cACA,gCAAA,CAGF,uBACE,8BAEA,AAFA,sBAEA,WACA,sBACA,aACA,eAAA,CAGF,8BACE,aACA,aACA,4BACA,AADA,oBACA,yBACA,kBACA,iBAAA,CAGF,oCACE,YACA,gBACA,aACA,iBAAA,CAGF,+DACE,UAAA,CAGF,AAJA,sDACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,2DACE,UAAA,CAGF,AAJA,iDACE,UAAA,CAGF,wCACE,kBACA,YACA,WACA,gBACA,QACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,iCACE,gBACA,aAAA,CAGF,8BACE,sBACA,aACA,6BACA,WACA,eAAA,CAGF,iCACE,eACA,MACA,OACA,WACA,SAAA,CAGF,wCACE,kBACA,mBACA,AADA,eACA,AADA,OACA,UACA,UAAA,CAGF,8CACE,YACA,aACA,iBACA,oBAAA,CAGF,+BACE,gBAAA,CAGF,2BACE,sBACA,6BACA,cACA,wBACA,gBACA,UAAA,CAGF,mCACE,YAAA,CAGF,4CACE,aACA,cACA,0BAAA,iBAAA,CAGF,kDACE,WACA,YACA,0BACA,AADA,kBACA,uBACA,iCACA,AADA,yBACA,8BACA,4BACA,AACA,8BAAA,qBAAA,CAGF,yCACE,aACA,gBACA,UAAA,CAGF,+CACE,gBACA,WACA,mBAAA,CAGF,kCACE,aACA,iBACA,gBACA,UAAA,CAIF,sBACE,4EACA,4BACA,kCACA,AADA,0BACA,WACA,aAAA,CAGF,4BACE,gBACA,WACA,kBACA,iBAAA,CAGF,oCACE,gBACA,4BACA,kBACA,WAAA,CAGF,8CACE,gBACA,iBAAA,CAGF,2BACE,kBACA,WAEA,gBACA,gCAAa,CAGf,8BACE,gBACA,iBACA,gBACA,2BAAA,CAGF,oCACE,iBACA,iBAAA,CAGF,2CACE,gBACA,UAAA,CAGF,mBACE,gBACA,WACA,aACA,aACA,4BACA,AADA,oBACA,kBACA,kBACA,yBAAA,CAGF,oBACE,gBACA,gBAAA,CAGF,0BACE,aACA,cACA,4BACA,AADA,oBACA,sBACA,iBACA,gBACA,UAAA,CAGF,oCACE,gBAGA,oBACA,aAAA,CAIF,qBACE,sBACA,wBACA,mBAAA,CAGF,6BACE,aACA,cACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,4BACA,AADA,oBACA,cACA,4BACA,eAAA,CAGF,wCACE,0EACA,4BACA,kCACA,AADA,qBACA,YACA,WACA,uBAAA,CAGF,iDACE,eAAA,CAGF,gEACE,gBACA,WACA,iCACA,iBACA,aACA,iBAAA,CAGF,2DACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,yBACA,kBACA,iBAAA,CAGF,oDACE,gBAAA,CAGF,0DACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBAAA,CAGF,iEACE,gBACA,iCACA,WACA,eAAA,CAGF,0BACE,cACA,+BAAA,CAGF,gCACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,UAAA,CAGF,yCACE,YACA,aACA,cACA,mBAAA,CAGF,+CACE,WACA,WAAA,CAGF,6BACE,gBACA,gBAAA,CAGF,mCACE,yBACA,aACA,cACA,4BACA,AADA,oBACA,wBACA,gBACA,aAAA,CAGF,sCACE,yBACA,aAAA,CAGF,4CACE,YACA,YAAA,CAGF,kDACE,WACA,WAAA,CAGF,+CACE,gBACA,iBACA,cACA,kBAAA,CAGF,kDACE,aAAA,CAGF,2BACE,eAAA,CAGF,iCACE,gBAAA,CAGF,mDACE,YACA,aACA,0BACA,AADA,kBACA,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,0EACA,kBACA,kBACA,WACA,eAAA,CAGF,0DACE,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,yDACE,2FACA,AADA,yEACA,AADA,oEACA,AADA,qEACA,yEAAkB,CAGpB,yCACE,aACA,gBACA,aAAA,CAGF,+CACE,YAAA,CAGF,sDACE,gBACA,WACA,eAAA,CAGF,sCACE,gBACA,cACA,aACA,aACA,sBACA,4BACA,AADA,oBACA,kBACA,iBAAA,CAGF,0CACE,gBACA,WACA,yBACA,oBAAA,CAIF,mBACE,sBACA,aACA,WACA,iBAAA,CAGF,yBACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,cACA,WAAA,CAGF,4BACE,cACA,gCAAA,CAIF,oBACE,WACA,aAAA,CAGF,0BACE,WACA,WAAA,CAGF,wBACE,eACA,MACA,sBACA,OACA,WACA,SAAA,CAGF,sBACE,WACA,mBACA,gBACA,aAAA,CAGF,iCACE,kBACA,gBACA,WACA,aAAA,CAGF,4BACE,qBACA,gBACA,cACA,aACA,kBACA,gBACA,aACA,wBAAA,CAGF,kCACE,6BAAA,CAGF,kCACE,gBACA,iBACA,aACA,iBAAA,CAGF,+BACE,yBACA,WACA,iBAAA,CAGF,uCACE,WACA,QACA,SACA,mCACA,oCACA,+BACA,kBACA,aACA,WACA,SACA,mCAAW,AAAX,+BAAW,AAAX,0BAAW,CAGb,uBACE,aACA,gCACA,gBACA,aAAA,CAGF,gCACE,aAAA,CAGF,6BACE,gBACA,aAAA,CAGF,iCACE,gBACA,iBACA,yBACA,kBACA,2BACA,AADA,mBACA,aAAA,CAKF,qBACE,iBAAA,CAGF,wBACE,gBACA,gCACA,cACA,iBAAA,CAGF,iCACE,aACA,aAAA,CAGF,uCACE,WACA,YACA,2BAAA,kBAAA,CAGF,8BACE,aACA,gBACA,WACA,aAAA,CAGF,qCACE,gBACA,cACA,iBAAA,CAGF,0CACE,gBACA,gBAAA,CAGF,wCACE,gBACA,sBACA,aACA,4BACA,AADA,oBACA,aACA,iBAAA,CAGF,gDACE,QACA,YACA,kCACA,AADA,6BACA,AADA,0BACA,wBAAA,CAGF,+CACE,kBACA,OACA,QACA,qCACA,AADA,iCACA,AADA,6BACA,QACA,gBACA,iBACA,iBAAA,CAGF,8BACE,gBACA,WACA,aACA,aACA,2BACA,AADA,mBACA,kBACA,kBACA,kBACA,YACA,YAAA,CAIF,kBACE,8BACA,AADA,sBACA,oFACA,kCACA,AADA,0BACA,WACA,cACA,eAAA,CAGF,yBACE,gBACA,UAAA,CAGF,8BACE,eAAA,CAGF,kCACE,gBACA,kBACA,4BAAA,CAGF,yBACE,gBACA,WACA,kBACA,kBAAA,CAGF,+BACE,eAAA,CAGF,yCACE,eACA,gBACA,cACA,sBACA,2BAAA,kBAAA,CAGF,4BACE,WACA,gBACA,iBAAA,CAGF,0BACE,oBACA,qBAAA,CAGF,4CACE,aACA,gBACA,gBAAA,CAGF,+CACE,gBACA,aAAA,CAGF,iCACE,mBACA,gBACA,aAAA,CAGF,wCACE,aACA,kBAAA,CAGF,yBACE,eACA,SACA,WACA,cACA,sBACA,gBACA,WACA,UAAA,CAGF,sCACE,UACA,gBACA,UAAA,CAGF,8BACE,WACA,kBACA,mBACA,YACA,WACA,eAAA,CAIF,sBACE,aACA,cACA,wBAAA,CAGF,oCACE,WACA,aAAA,CAGF,mCACE,WACA,YACA,2BAAA,kBAAA,CAGF,gDACE,YACA,aACA,wBACA,AADA,gBACA,iCACA,AADA,6BACA,AADA,yBACA,gCACA,AADA,wBACA,4BACA,2BACA,yBACA,UACA,cAAA,CAGF,uDACE,yBACA,QAAA,CAGF,yCACE,aACA,UAAA,CAGF,eACE,gBACA,WACA,cACA,gBACA,qBAAA,CAGF,kBACE,eACA,MACA,OACA,WACA,SAAA,CAGF,0BACE,mBACA,kBACA,gBACA,UAAA,CAGF,qBACE,qBACA,gBACA,WACA,gBAAA,CAGF,wBACE,aAAA,CAGF,2BACE,iBAAA,CAGF,2BACE,YACA,YACA,2BACA,AADA,mBACA,wBAAA,CAGF,mBACE,iBAAA,CAGF,sBACE,eACA,gCACA,eAAA,CAGF,+BACE,aACA,aAAA,CAGF,qCACE,WACA,YACA,2BAAA,kBAAA,CAGF,4BACE,aACA,cACA,gBACA,UAAA,CAGF,kCACE,gBACA,aAAA,CAGF,wCACE,aACA,cACA,gBAAA,CAGF,2CACE,aACA,aAAA,CAGF,8CACE,WACA,YACA,2BAAA,kBAAA,CAGF,4BACE,iBACA,gBACA,WACA,gBAAA,CAGF,0BACE,gBAAA,CAIF,mBACE,gBACA,gBACA,cACA,iBACA,uBACA,eAAA,CAGF,kBACE,eACA,6BACA,oBAAA,CAGF,yBACE,gBACA,aACA,2BACA,AADA,mBACA,kBACA,kBACA,gBACA,iBACA,WAAA,CAGF,wBACE,kBACA,gBACA,UAAA,CAGF,kCACE,gBACA,kBAAA,CAGF,mDACE,eAAA,CAGF,oBACE,gBACA,gBACA,WACA,gBACA,iBAAA,CAGF,0BACE,WACA,aAAA,CAIF,sDACE,eAAA,CAGF,2DACE,gCAAa,CAIf,UAGE,WACA,aACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BAAA,6BAAA,8BAAA,0BAAA,qBAAA,CA4BF,mBACE,eAAA,CAGF,0BACE,gBACA,gBACA,cACA,gBACA,iBACA,kBACA,mBAAA,CAGF,sCACE,iBAAA,CAGF,gCACE,cACA,8BACA,oBAAA,CAGF,mCACE,cACA,2BAAA,CAGF,+BACE,gCACA,2BACA,iBAAA,CAGF,qCACE,gBACA,cACA,oBACA,eAAA,CAGF,qCACE,gBACA,kBAAA,CAGF,qCACE,gBACA,UAAA,CAGF,gEACE,aAAA,CAGF,AAJA,uDACE,aAAA,CAGF,AAJA,2DACE,aAAA,CAGF,AAJA,4DACE,aAAA,CAGF,AAJA,kDACE,aAAA,CAGF,yCACE,YAAA,CAGF,qCACE,kBACA,aACA,aACA,yBACA,4BACA,AADA,oBACA,WACA,kBACA,kBACA,aACA,QACA,eAAA,CAGF,wCACE,wBAAA,CAGF,oCACE,iBACA,gBACA,cACA,gBAAA,CAGF,8CACE,gBACA,mBACA,qBAAA,CAGF,0BACE,gBACA,WACA,iBACA,aACA,4BACA,AADA,oBACA,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,oEACA,kBACA,kBACA,gBAAA,CAGF,wBACE,cACA,kBACA,mBACA,gBACA,aAAA,CAGF,kBAEE,4BACA,kCACA,AADA,0BACA,aACA,aACA,aAAA,CAIF,aACE,eAAA,CAGF,qBACE,WACA,aACA,sBACA,eACA,OACA,QAGA,UAIA,MAGA,SAAA,CAIF,4BACE,aACA,aACA,yBACA,4BACA,AADA,oBACA,eAAA,CAGF,sCACE,gBACA,UAAA,CAGF,kCACE,gBACA,YACA,YAAA,CAGF,6DACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,+CACE,UAAA,CAGF,oBACE,eACA,aACA,OACA,UACA,cACA,yBACA,gBACA,kBACA,wBAAA,CAGF,0BACE,aACA,WACA,gBACA,aAAA,CAGF,6BACE,sBACA,+BACA,WACA,kBACA,cACA,gBAAA,CAGF,qBACE,mBACA,gBACA,gBAAA,CAGF,4BACE,iBAAA,CAGF,mCACE,YAAA,CAGF,yCACE,aACA,YACA,qBAAA,CAGF,yCACE,gBACA,WACA,eACA,gBAAA,CAGF,2BACE,uBACA,AADA,eACA,kBAAA,CAGF,iCACE,aACA,gBAAA,CAGF,0CACE,aACA,cACA,0BAAA,iBAAA,CAGF,gDACE,WACA,YACA,0BAAA,iBAAA,CAGF,uCACE,gBACA,WACA,aACA,kBACA,aACA,iBAAA,CAIF,MACE,eACA,WACA,YACA,kBACA,WACA,WAAA,CAGF,eACE,gBACA,YACA,4BACA,AADA,oBACA,0CACA,AADA,qCACA,AADA,kCACA,UACA,2BACA,AADA,uBACA,AADA,mBACA,SACA,aAAA,CAGF,kBACE,UACA,2BACA,AADA,uBACA,AADA,mBACA,cACA,gBACA,mBAAA,CAGF,yBACE,gBACA,WACA,qBACA,aACA,aAAA,CAGF,eACE,YACA,aACA,0BAAA,iBAAA,CAGF,sBACE,WACA,YACA,0BAAA,iBAAA,CAIF,iBACE,gBACA,qBAAA,CAGF,wBACE,aAAA,CAGF,+BACE,6BAAA,CAGF,gCACE,YAAA,CAGF,yCACE,aACA,aAAA,CAGF,+CACE,WACA,YACA,2BAAA,kBAAA,CAGF,sCACE,aACA,aAAA,CAGF,4CACE,gBACA,aAAA,CAGF,4CACE,gBACA,UAAA,CAGF,+BACE,aACA,iBACA,eAAA,CAGF,wCACE,aAAA,CAGF,oCACE,cACA,aAAA,CAGF,wCACE,WACA,4BAAA,CAGF,cACE,gBACA,cACA,0BACA,aACA,kBACA,iBACA,gBACA,qBAAA,CAGF,qBACE,aAAA,CAGF,aACE,eACA,aACA,cACA,sBACA,4BACA,AADA,oBACA,QACA,SACA,oBACA,mBACA,WACA,0CACA,AADA,qCACA,AADA,kCACA,2BACA,AADA,uBACA,AADA,mBACA,SAAA,CAGF,gBACE,UACA,2BAAW,AAAX,uBAAW,AAAX,kBAAW,CAGb,yBACE,+EACA,kCACA,AADA,0BACA,WACA,cACA,sCACA,AADA,8BACA,kBACA,gBACA,WACA,mBACA,iBAAA,CAGF,mCACE,kBACA,gBACA,YACA,UACA,YACA,aACA,iBAAA,CAGF,yBACE,eAAA,CAGF,+BACE,cACA,gCACA,gBACA,UAAA,CAGF,sCACE,WACA,aACA,gBAAA,CAGF,gDACE,gBACA,iBAAA,CAGF,4CACE,WACA,YACA,iBACA,UAAA,CAGF,+CACE,UAAA,CAGF,qBACE,gBACA,WACA,aACA,aACA,kBACA,kBACA,4BACA,AADA,oBACA,yBACA,wBAAA,CAGF,sBACE,gBACA,cACA,aACA,aACA,kBACA,kBACA,4BACA,AADA,oBACA,sBACA,wBAAA,CAGF,uBACE,gBACA,cACA,gBACA,mBAAA,CAGF,iCACE,cACA,gBACA,mBACA,qBAAA,CAGF,gBACE,yBACA,aACA,sBACA,4BACA,AADA,oBACA,iBAAA,CAGF,qBACE,gBACA,aACA,kBACA,gBACA,UAAA,CAGF,sBACE,aACA,eAAA,CAGF,wBACE,aACA,gBAAA,CAGF,0BACE,aACA,gBAAA,CAGF,wBACE,eAAA,CAGF,8BACE,gCACA,aACA,eAAA,CAGF,wCACE,aAAA,CAIF,qBACE,WACA,aACA,sBACA,gBACA,cACA,eACA,MACA,MAAA,CAGF,8BACE,aAAA,CAGF,sBACE,iBAAA,CAGF,4BACE,sBACA,UAAA,CAGF,kCACE,gBAAA,CAGF,uCACE,6BACA,gBACA,iBACA,cACA,oBACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,yBAAA,sCAAA,sBAAA,6BAAA,CAGF,6CACE,gBACA,mBACA,WACA,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBAAA,2BAAA,sBAAA,kBAAA,CAGF,uCACE,oBACA,eAAA,CAGF,6CACE,iBAAA,CAGF,qDACE,gBACA,UAAA,CAGF,qDACE,QACA,SACA,oCACA,qCACA,+BACA,kBACA,WACA,aAAA,CAGF,4DACE,WACA,QACA,SACA,mCACA,oCACA,4BACA,kBACA,WACA,QAAA,CAGF,8CACE,aACA,sBACA,sBACA,4BACA,AADA,oBACA,kBACA,YACA,SAAA,CAGF,qDACE,aACA,kBACA,iBAAA,CAGF,4DACE,4BAAA,CAGF,4CACE,gBACA,cACA,aACA,aACA,4BACA,AADA,oBACA,sBACA,kBACA,iBAAA,CAGF,iDACE,iBAAA,CAIF,2BACE,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,mEAAY,CAGd,kCACE,gBACA,UAAA,CAGF,iCACE,kBACA,eAAA,CAGF,4CACE,gBACA,kBAAA,CAGF,4BACE,WACA,aACA,sBACA,eAAA,CAGF,sCACE,gBACA,aAAA,CAGF,kCACE,aACA,YACA,eAAA,CAGF,6DACE,UAAA,CAGF,AAJA,oDACE,UAAA,CAGF,AAJA,wDACE,UAAA,CAGF,AAJA,yDACE,UAAA,CAGF,AAJA,+CACE,UAAA,CAGF,iCACE,gBACA,cACA,gBACA,YACA,sBACA,iBACA,+BAAA,CAGF,2CACE,gBACA,cACA,kBAAA,CAGF,4BACE,YAAA,CAGF,oCACE,gBAAA,CAGF,iCACE,gBACA,WACA,aACA,aACA,kBACA,kBACA,mBACA,iBAAA,CAGF,qCACE,qFACA,AADA,mEACA,AADA,8DACA,AADA,+DACA,mEAAY,CAGd,+CACE,QACA,SACA,oCACA,qCACA,+BACA,kBACA,WACA,aAAA,CAGF,sDACE,WACA,QACA,SACA,mCACA,oCACA,4BACA,kBACA,YACA,QAAA,CAGF,wCACE,aACA,sBACA,sBACA,4BACA,AADA,oBACA,kBACA,YACA,SAAA,CAGF,8CACE,aACA,iBAAA,CAGF,oDACE,4BAAA,CAGF,2CACE,WACA,WAAA,CAIF,sBACE,WACA,sBACA,gBAAA,CAGF,iCACE,gBACA,gCACA,YAAA,CAGF,sCACE,aACA,gBACA,cACA,iBAAA,CAGF,4CACE,kBACA,WACA,UACA,aACA,sBACA,QACA,kBACA,OAAA,CAGF,uCACE,aACA,gBACA,cACA,iBAAA,CAGF,iDACE,gBACA,cACA,sBACA,kBAAA,CAGF,+BACE,gBACA,cACA,sBACA,aAAA,CAGF,qCACE,gBACA,cACA,mBAAA,CAGF,4CACE,iBAAA,CAGF,4BACE,WACA,WAAA,CAGF,kCACE,WACA,YACA,aAAA,CAGF,wBACE,WACA,qBAAA,CAGF,8BACE,gCACA,gBACA,aACA,gBACA,cACA,iBAAA,CAGF,oCACE,aACA,YACA,gBAAA,CAGF,8CACE,gBACA,iBAAA,CAGF,kDACE,iBAAA,CAGF,2CACE,UAAA,CAGF,8CACE,aAAA,CAGF,uCACE,kBACA,gBACA,cACA,WAAA,CAGF,qCACE,cACA,oBACA,kBACA,SAAA,CAGF,+DACE,UAAA,CAGF,AAJA,sDACE,UAAA,CAGF,AAJA,0DACE,UAAA,CAGF,AAJA,2DACE,UAAA,CAGF,AAJA,iDACE,UAAA,CAGF,wBACE,gBACA,WACA,WACA,cACA,yBACA,kBACA,mBACA,eACA,QAAA,CAIF,qBACE,8BACA,AADA,sBACA,kCACA,AADA,0BACA,WACA,cACA,4BACA,iBAAA,CAKF,oBACE,kBACA,WACA,OACA,QACA,MACA,SAAA,CAIF,2BACE,kBACA,OACA,QACA,cACA,WACA,WACA,cACA,WACA,kCAAA,yBAAA,CAIF,2BACE,mBACA,AADA,eACA,AADA,OACA,UACA,WACA,kBACA,gBACA,UAAA,CAGF,gCACE,gBACA,kBAAA,CAGF,sBACE,kBACA,aACA,sBACA,4BACA,AADA,oBACA,2BACA,kBACA,UAAA,CAGF,6BACE,gBACA,cACA,gBACA,mBAAA,CAGF,uCACE,cACA,gBACA,mBACA,qBAAA,CAGF,kCACE,aACA,kBACA,gBACA,WACA,mBAAA,CAGF,uCACE,gBACA,UAAA,CAIF,wBACE,WACA,aACA,sBACA,gBACA,kBACA,eACA,MACA,OACA,SAAA,CAGF,8BACE,kBACA,gBACA,mBACA,UAAA,CAGF,8BACE,gBACA,cACA,kBACA,oBAAA,CAGF,iCACE,aAAA,CAGF,wCACE,gBACA,iBAAA,CAGF,2BACE,8BACA,AADA,sBACA,WACA,sBACA,4BACA,AADA,oBACA,0BACA,mBAAA,CAGF,kCACE,gBACA,WACA,iBAAA,CAGF,kCACE,gBACA,cACA,kBACA,gBAAA,CAGF,qCACE,gBACA,WACA,gBAAA,CAGF,0CACE,aAAA,CAGF,4CACE,aAAA,CAGF,+CACE,gBACA,iBAAA,CAGF,yBACE,aACA,cACA,sBACA,4BACA,AADA,oBACA,yBACA,2BAAA,CAGF,kCACE,gBACA,UAAA,CAGF,2BACE,gBAAA,CAGF,8BACE,yBACA,0BACA,UAAA,CAIF,oCACE,cAAA,CAIF,wDACE,wBAAA,CAIF,YACE,sBACA,gBACA,aACA,cACA,4BAAA,mBAAA,CAGF,eACE,iBAAA,CAGF,kBACE,cACA,iBACA,eAAA,CAGF,eACE,kBACA,gBACA,aAAA,CAGF,eACE,kBACA,gBACA,0BAAA,CAGF,iBACE,aAAA,CAGF,yBACE,4BACA,aAAA,CAIF,uBACE,gBACA,iBACA,kBACA,gBAAA,CAGF,sBACE,aACA,wBAAA,CAGF,4BACE,WACA,cACA,gCAAA,CAGF,kCACE,WACA,YACA,eAAA,CAGF,6DACE,aAAA,CAGF,AAJA,oDACE,aAAA,CAGF,AAJA,wDACE,aAAA,CAGF,AAJA,yDACE,aAAA,CAGF,AAJA,+CACE,aAAA,CAGF,2CACE,YAAA,CAGF,kCACE,eAAA,CAGF,qCACE,wBAAA,CAGF,4BACE,gBACA,aACA,aACA,4BACA,AADA,oBACA,WACA,yBACA,kBACA,iBAAA,CAKF,kBACE,kBACA,QACA,SACA,eAAA,CAJF,gCAOI,kBACA,OACA,MACA,uBACA,wBAAA,CAIJ,0DAEE,qBAAA,CAGF,2BACE,wBAAA,CAGF,UACE,WACA,aAAA,CAFF,8BAMI,cACA,UAAA,CAQJ,OACE,gBACA,mBACA,0BACA,AADA,uBACA,kCAAA,6BAAA,yBAAA,CAIF,QACE,gBACA,0BACA,AADA,uBACA,oBACA,qBACA,4BACA,kCAAA,6BAAA,yBAAA,CAOF,KACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBAAA,2BAAA,sBAAA,kBAAA,CAIF,MACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,yBACA,AADA,sCACA,AADA,sBACA,AADA,8BACA,yBAAA,2BAAA,sBAAA,kBAAA,CAIF,MACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,qCACA,AADA,yBACA,AADA,6BACA,yBAAA,2BAAA,sBAAA,kBAAA,CAIF,SACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,wBAAA,+BAAA,qBAAA,sBAAA,CAIF,OACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,sBAAA,6BAAA,mBAAA,oBAAA,CAIF,KACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,wBACA,AADA,+BACA,AADA,qBACA,AADA,uBACA,yBAAA,2BAAA,sBAAA,kBAAA,CAIF,SACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BACA,AADA,6BACA,AADA,8BACA,AADA,0BACA,AADA,sBACA,wBAAA,+BAAA,qBAAA,sBAAA,CAIF,OACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BACA,AADA,6BACA,AADA,8BACA,AADA,0BACA,AADA,sBACA,sBAAA,6BAAA,mBAAA,oBAAA,CAIF,KACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BACA,AADA,6BACA,AADA,8BACA,AADA,0BACA,AADA,sBACA,yBAAA,2BAAA,sBAAA,kBAAA,CAIF,KACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BACA,AADA,6BACA,AADA,8BACA,AADA,0BACA,AADA,sBACA,yBAAA,sCAAA,sBAAA,6BAAA,CAIF,MACE,oBACA,AADA,qBACA,AADA,oBACA,AADA,aACA,4BACA,AADA,6BACA,AADA,8BACA,AADA,0BACA,AADA,sBACA,yBACA,AADA,2BACA,AADA,sBACA,AADA,mBACA,yBAAA,sCAAA,sBAAA,6BAAA,CAQF,KACE,eAAA,CAGF,KACE,iBAAA,CAGF,KACE,kBAAA,CAGF,KACE,gBAAA,CAGF,KACE,iBACA,iBAAA,CAGF,KACE,gBACA,kBAAA,CAGF,KACE,WAAA,CAGF,KACE,eAAA,CAGF,KACE,iBAAA,CAGF,KACE,kBAAA,CAGF,KACE,gBAAA,CAGF,KACE,iBACA,iBAAA,CAGF,KACE,gBACA,kBAAA,CAGF,KACE,WAAA,CAGF,KACE,eAAA,CAGF,KACE,iBAAA,CAGF,KACE,kBAAA,CAGF,KACE,gBAAA,CAGF,KACE,iBACA,iBAAA,CAGF,KACE,gBACA,kBAAA,CAGF,KACE,WAAA,CAGF,MACE,gBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBAAA,CAGF,MACE,iBAAA,CAGF,MACE,kBACA,kBAAA,CAGF,MACE,iBACA,mBAAA,CAGF,MACE,YAAA,CAGF,MACE,gBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBAAA,CAGF,MACE,iBAAA,CAGF,MACE,kBACA,kBAAA,CAGF,MACE,iBACA,mBAAA,CAGF,MACE,YAAA,CAGF,MACE,gBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBAAA,CAGF,MACE,iBAAA,CAGF,MACE,kBACA,kBAAA,CAGF,MACE,iBACA,mBAAA,CAGF,MACE,YAAA,CAGF,MACE,gBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBAAA,CAGF,MACE,iBAAA,CAGF,MACE,kBACA,kBAAA,CAGF,MACE,iBACA,mBAAA,CAGF,MACE,YAAA,CAGF,MACE,gBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBAAA,CAGF,MACE,iBAAA,CAGF,MACE,kBACA,kBAAA,CAGF,MACE,iBACA,mBAAA,CAGF,MACE,YAAA,CAGF,KACE,gBAAA,CAGF,KACE,kBAAA,CAGF,KACE,mBAAA,CAGF,KACE,iBAAA,CAGF,KACE,kBACA,kBAAA,CAGF,KACE,iBACA,mBAAA,CAGF,KACE,YAAA,CAGF,KACE,gBAAA,CAGF,KACE,kBAAA,CAGF,KACE,mBAAA,CAGF,KACE,iBAAA,CAGF,KACE,kBACA,kBAAA,CAGF,KACE,iBACA,mBAAA,CAGF,KACE,YAAA,CAGF,KACE,gBAAA,CAGF,KACE,kBAAA,CAGF,KACE,mBAAA,CAGF,KACE,iBAAA,CAGF,KACE,kBACA,kBAAA,CAGF,KACE,iBACA,mBAAA,CAGF,KACE,YAAA,CAGF,MACE,iBAAA,CAGF,MACE,mBAAA,CAGF,MACE,oBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBACA,mBAAA,CAGF,MACE,kBACA,oBAAA,CAGF,MACE,aAAA,CAGF,MACE,iBAAA,CAGF,MACE,mBAAA,CAGF,MACE,oBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBACA,mBAAA,CAGF,MACE,kBACA,oBAAA,CAGF,MACE,aAAA,CAGF,MACE,iBAAA,CAGF,MACE,mBAAA,CAGF,MACE,oBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBACA,mBAAA,CAGF,MACE,kBACA,oBAAA,CAGF,MACE,aAAA,CAGF,MACE,iBAAA,CAGF,MACE,mBAAA,CAGF,MACE,oBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBACA,mBAAA,CAGF,MACE,kBACA,oBAAA,CAGF,MACE,aAAA,CAGF,MACE,iBAAA,CAGF,MACE,mBAAA,CAGF,MACE,oBAAA,CAGF,MACE,kBAAA,CAGF,MACE,mBACA,mBAAA,CAGF,MACE,kBACA,oBAAA,CAGF,MACE,aAAA,CAIF,WACE,aACA,eAAA,CAFF,oBAKI,aACA,cACA,gBACA,iBAAA,CARJ,yBAWM,kBACA,OACA,YACA,UACA,kBACA,sEACA,AADA,iEACA,AADA,8DACA,0CACA,AADA,kCACA,gBACA,gBACA,wBACA,iBACA,aAAA,CAtBN,yBA0BM,WACA,qBAAA,CA3BN,sBAgCI,WACA,gBAAA,CAjCJ,uCAoCM,gBACA,gBACA,aAAA,CAtCN,gCA0CM,gBACA,gBACA,6BACA,WACA,iBAAA,CA9CN,kBAmDI,eAAA,CAIJ,cACE,UACA,sBACA,iBAAA,CAGF,qBACE,QAAA,CAGF,wBACE,aAAA,CAIF,YAEI,cACA,gBACA,WACA,8BAAA,qBAAA,CALJ,kBASI,mBACA,AADA,eACA,AADA,WACA,AADA,OACA,iBAAA,CAIJ,+BAGE,WAAA,CAAA","file":"to.css","sourcesContent":[null]} \ No newline at end of file diff --git a/assets/css/style.less b/assets/css/style.less index 9e0a160..5df539a 100644 --- a/assets/css/style.less +++ b/assets/css/style.less @@ -1,5 +1,18 @@ +view, +scroll-view, +swiper, +button, +input, +textarea, +label, +navigator, +image { + box-sizing: border-box; +} + page { background: #f5f5f5; + height: 100%; } .newsList .newsSwitch .van-hairline--top-bottom::after { @@ -410,7 +423,7 @@ page { } .coupon-list .item .money { - background-image: url('https://h5.yixiang.co/static/images/coupon1.png'); + background-image: url('https://wx.yixiang.co/static/images/coupon1.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 2.4*100rpx; @@ -426,7 +439,7 @@ page { } .coupon-list .item .money.moneyGray { - background-image: url('https://h5.yixiang.co/static/images/coupon2.png'); + background-image: url('https://wx.yixiang.co/static/images/coupon2.png'); } .coupon-list .item .money .num { @@ -1041,7 +1054,7 @@ page { padding: 0 0.88*100rpx 0 0.55*100rpx; font-size: 0.28*100rpx; color: #fff; - background-image: url('https://h5.yixiang.co/static/images/transparent.png'); + background-image: url('https://wx.yixiang.co/static/images/transparent.png'); background-repeat: no-repeat; background-size: 100% 100%; } @@ -1060,7 +1073,7 @@ page { /*首页优惠券弹窗*/ .coupon-window { - background-image: url('https://h5.yixiang.co/static/images/coupon-window.png'); + background-image: url('https://wx.yixiang.co/static/images/coupon-window.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 6.3*100rpx; @@ -1146,7 +1159,7 @@ page { } .coupon-window .lid { - background-image: url('https://h5.yixiang.co/static/images/coupon-window2.png'); + background-image: url('https://wx.yixiang.co/static/images/coupon-window2.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 5.73*100rpx; @@ -1570,7 +1583,7 @@ page { .index .hotList .hot-bg { width: 100%; height: 2.15*100rpx; - background-image: url('https://h5.yixiang.co/static/images/index-bg.png'); + background-image: url('https://wx.yixiang.co/static/images/index-bg.png'); background-repeat: no-repeat; background-size: 100% 100%; padding: 0 0.3*100rpx; @@ -2724,12 +2737,24 @@ page { background-image: -moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%); } + .product-con .footer .bnt .buy { border-radius: 0 0.5*100rpx 0.5*100rpx 0; background-image: linear-gradient(to right, #eb3729 0%, #eb3729 100%); background-image: -moz-linear-gradient(to right, #eb3729 0%, #eb3729 100%); } +.product-con .footer .bnt.seckill-bnt { + flex: 1; + margin-left: 20rpx; + + .buy { + width: 100%; + border-radius: 50rpx; + } +} + + /*订单提交*/ .order-submission .line { width: 100%; @@ -3667,6 +3692,7 @@ page { height: 100%; border-radius: 50%; } + .personal-data .wrapper .wrapList .item .picTxt .pictrue img { width: 100%; height: 100%; @@ -3866,27 +3892,27 @@ page { } .member-center .header .slider-banner .swiper-slide.diamonds { - background-image: url("https://h5.yixiang.co/static/images/diamonds.jpg"); + background-image: url("https://wx.yixiang.co/static/images/diamonds.jpg"); } .member-center .header .slider-banner .swiper-slide.gold { - background-image: url("https://h5.yixiang.co/static/images/gold.jpg"); + background-image: url("https://wx.yixiang.co/static/images/gold.jpg"); } .member-center .header .slider-banner .swiper-slide.silver { - background-image: url("https://h5.yixiang.co/static/images/silver.jpg"); + background-image: url("https://wx.yixiang.co/static/images/silver.jpg"); } .member-center .header .slider-banner .swiper-slide.brass { - background-image: url("https://h5.yixiang.co/static/images/brass.jpg"); + background-image: url("https://wx.yixiang.co/static/images/brass.jpg"); } .member-center .header .slider-banner .swiper-slide.bronze { - background-image: url("https://h5.yixiang.co/static/images/bronze.jpg"); + background-image: url("https://wx.yixiang.co/static/images/bronze.jpg"); } .member-center .header .slider-banner .swiper-slide.ordinary { - background-image: url("https://h5.yixiang.co/static/images/ordinary.jpg"); + background-image: url("https://wx.yixiang.co/static/images/ordinary.jpg"); } .member-center .header .slider-banner .swiper-slide image { @@ -4095,7 +4121,7 @@ page { /*积分详情*/ .integral-details .header { - background-image: url('https://h5.yixiang.co/static/images/integralbg.jpg'); + background-image: url('https://wx.yixiang.co/static/images/integralbg.jpg'); background-repeat: no-repeat; background-size: 100% 100%; width: 100%; @@ -4390,7 +4416,7 @@ page { } .bargain .header { - /* background-image: url('https://h5.yixiang.co/static/images/cut1.png'); */ + /* background-image: url('https://wx.yixiang.co/static/images/cut1.png'); */ background-repeat: no-repeat; background-size: 100% 100%; width: 6.98*100rpx; @@ -4401,7 +4427,7 @@ page { } .bargain .header.on { - background-image: url('https://h5.yixiang.co/static/images/cut2.png'); + background-image: url('https://wx.yixiang.co/static/images/cut2.png'); } .bargain .header .pictxt { @@ -4428,7 +4454,6 @@ page { } .bargain .header .time { - background-image: url('https://h5.yixiang.co/static/images/time.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 4.4*100rpx; @@ -4570,7 +4595,7 @@ page { .bargain .wrapper .lock, .bargain .bargainGang .lock, .bargain .goodsDetails .lock { - background-image: url('https://h5.yixiang.co/static/images/lock.png'); + background-image: url('https://wx.yixiang.co/static/images/lock.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 5.48*100rpx; @@ -5638,7 +5663,7 @@ page { } .sign .wrapper .list .item .venus { - background-image: url('https://h5.yixiang.co/static/images/stars2.png'); + background-image: url('https://wx.yixiang.co/static/images/stars2.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 0.56*100rpx; @@ -5647,11 +5672,11 @@ page { } .sign .wrapper .list .item .venus.venusSelect { - background-image: url('https://h5.yixiang.co/static/images/stars1.png'); + background-image: url('https://wx.yixiang.co/static/images/stars1.png'); } .sign .wrapper .list .item .venus.reward { - background-image: url('https://h5.yixiang.co/static/images/stars3.png'); + background-image: url('https://wx.yixiang.co/static/images/stars3.png'); width: 0.75*100rpx; height: 0.56*100rpx; } @@ -5672,7 +5697,7 @@ page { } .sign .wrapper .lock { - background-image: url('https://h5.yixiang.co/static/images/lock2.png'); + background-image: url('https://wx.yixiang.co/static/images/lock2.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 5.58*100rpx; @@ -5709,7 +5734,7 @@ page { text-align: center; line-height: 1.16*100rpx; margin-right: 0.19*100rpx; - background-image: url('https://h5.yixiang.co/static/images/redBg.png'); + background-image: url('https://wx.yixiang.co/static/images/redBg.png'); } .sign .wrapper2 .list2 .data { @@ -5780,7 +5805,7 @@ page { } .sign .signTip .signTipCon { - background-image: url('https://h5.yixiang.co/static/images/register.png'); + background-image: url('https://wx.yixiang.co/static/images/register.png'); background-repeat: no-repeat; background-size: 100% 100%; width: 4.2*100rpx; @@ -6127,53 +6152,57 @@ page { margin: 0.2*100rpx 0.3*100rpx 0 0.3*100rpx; } -/*银行卡提现*/ -.cash-withdrawal .nav { - height: 1.3*100rpx; - box-shadow: 0 0.1*100rpx 0.1*100rpx #f8f8f8; - -moz-box-shadow: 0 0.1*100rpx 0.1*100rpx #f8f8f8; - -o-box-shadow: 0 0.1*100rpx 0.1*100rpx #f8f8f8; -} - -.cash-withdrawal .nav .item { - font-size: 0.26*100rpx; - flex: 1; - -o-flex: 1; - -ms-flex: 1; - text-align: center; -} - -.cash-withdrawal .nav .item~.item { - border-left: 1px solid #f0f0f0; -} - -.cash-withdrawal .nav .item .iconfont { - width: 0.4*100rpx; - height: 0.4*100rpx; - border-radius: 50%; - border: 0.02*100rpx solid #e93323; - text-align: center; - line-height: 0.37*100rpx; - margin: 0 auto 0.06*100rpx auto; - font-size: 0.22*100rpx; -} - -.cash-withdrawal .nav .item .iconfont.on { - background-color: #e93323; - color: #fff; - border-color: #e93323; -} - -.cash-withdrawal .nav .item .line { - width: 0.02*100rpx; - height: 0.2*100rpx; - margin: 0 auto; - transition: height 0.3s; -} - -.cash-withdrawal .nav .item .line.on { - height: 0.39*100rpx; -} +.cash-withdrawal { + padding-top: 1.3*100rpx; +} + +// /*银行卡提现*/ +// .cash-withdrawal .nav { +// height: 1.3*100rpx; +// box-shadow: 0 0.1*100rpx 0.1*100rpx #f8f8f8; +// -moz-box-shadow: 0 0.1*100rpx 0.1*100rpx #f8f8f8; +// -o-box-shadow: 0 0.1*100rpx 0.1*100rpx #f8f8f8; +// } + +// .cash-withdrawal .nav .item { +// font-size: 0.26*100rpx; +// flex: 1; +// -o-flex: 1; +// -ms-flex: 1; +// text-align: center; +// } + +// .cash-withdrawal .nav .item~.item { +// border-left: 1px solid #f0f0f0; +// } + +// .cash-withdrawal .nav .item .iconfont { +// width: 0.4*100rpx; +// height: 0.4*100rpx; +// border-radius: 50%; +// border: 0.02*100rpx solid #e93323; +// text-align: center; +// line-height: 0.37*100rpx; +// margin: 0 auto 0.06*100rpx auto; +// font-size: 0.22*100rpx; +// } + +// .cash-withdrawal .nav .item .iconfont.on { +// background-color: #e93323; +// color: #fff; +// border-color: #e93323; +// } + +// .cash-withdrawal .nav .item .line { +// width: 0.02*100rpx; +// height: 0.2*100rpx; +// margin: 0 auto; +// transition: height 0.3s; +// } + +// .cash-withdrawal .nav .item .line.on { +// height: 0.39*100rpx; +// } .cash-withdrawal .wrapper .list { padding: 0 0.3*100rpx; @@ -6513,7 +6542,7 @@ page { /*我的推广*/ .my-promotion .header { - background-image: url("https://h5.yixiang.co/static/images/promotionBg.png"); + background-image: url("https://wx.yixiang.co/static/images/promotionBg.png"); background-repeat: no-repeat; background-size: 100% 100%; width: 100%; @@ -6617,7 +6646,7 @@ page { } .my-account .wrapper .header .headerCon { - background-image: url('https://h5.yixiang.co/static/images/accountBg.png'); + background-image: url('https://wx.yixiang.co/static/images/accountBg.png'); background-repeat: no-repeat; background-size: 100%; height: 100%; @@ -6946,7 +6975,7 @@ page { } .flash-sale .list .item .text { - width: 5*100rpx; + width: 4.7*100rpx; font-size: 0.3*100rpx; color: #333; height: 1.66*100rpx; @@ -7006,8 +7035,7 @@ page { /*抢购详情页*/ .product-con .nav { box-sizing: border-box; - background-image: url('https://h5.yixiang.co/static/images/rushBuy.jpg'); - background-repeat: no-repeat; + background: url('https://wx.yixiang.co/static/images/rushBuy.jpg') #fc4141 no-repeat; background-size: 100% 100%; width: 100%; height: 1*100rpx; @@ -7320,49 +7348,51 @@ page { /*立即注册*/ .register { - background-image: linear-gradient(to bottom, #eb3729 0%, #eb3729 100%); - background-image: -moz-linear-gradient(to bottom, #eb3729 0%, #eb3729 100%); + // background-image: linear-gradient(to bottom, #eb3729 0%, #eb3729 100%); + // background-image: -moz-linear-gradient(to bottom, #eb3729 0%, #eb3729 100%); width: 100%; height: 100vh; -} - -.register .shading { - background-image: url("https://h5.yixiang.co/static/images/registerw.png"); - background-repeat: no-repeat; - background-size: 100% 100%; - width: 100%; - height: 2.86*100rpx; - padding-top: 0.7*100rpx; -} - -.register .shading .pictrue { - width: 1.72*100rpx; - height: 1.72*100rpx; - border-radius: 50%; - background-color: rgba(255, 255, 255, 0.8); - margin: 0 auto; -} - -.register .shading .pictrue image { - width: 1.64*100rpx; - height: 1.64*100rpx; - border-radius: 50%; - display: block; -} + display: flex; + flex-direction: column; + // justify-content: center; +} + +// .register .shading { +// background-image: url("https://wx.yixiang.co/static/images/registerw.png"); +// background-repeat: no-repeat; +// background-size: 100% 100%; +// width: 100%; +// height: 2.86*100rpx; +// padding-top: 0.7*100rpx; +// } + +// .register .shading .pictrue { +// width: 1.72*100rpx; +// height: 1.72*100rpx; +// border-radius: 50%; +// background-color: rgba(255, 255, 255, 0.8); +// margin: 0 auto; +// } + +// .register .shading .pictrue image { +// width: 1.64*100rpx; +// height: 1.64*100rpx; +// border-radius: 50%; +// display: block; +// } .register .whiteBg { - width: 6.2*100rpx; - border-radius: 0.16*100rpx; - background-color: #fff; - margin: 0.3*100rpx auto 0 auto; - padding: 0.45*100rpx 0.3*100rpx 0 0.3*100rpx; + padding: 0 60rpx } .register .whiteBg .title { + line-height: 2em; font-size: 0.36*100rpx; color: #282828; - text-align: center; + text-align: left; font-weight: bold; + margin-top: 100rpx; + margin-bottom: 50rpx; } .register .whiteBg .title .item~.item { @@ -7381,8 +7411,8 @@ page { } .register .whiteBg .list .item { - border-bottom: 1px solid #ededed; - padding: 0.47*100rpx 0 0.13*100rpx 0; + border-bottom: 1px solid #cccccc; + padding: 30rpx 0 30rpx 0rpx; position: relative; } @@ -7400,7 +7430,7 @@ page { .register .whiteBg .list .item input { font-size: 0.33*100rpx; - width: 4.9*100rpx; + width: 100%; } .register .whiteBg .list .item input::placeholder { @@ -7464,7 +7494,7 @@ page { } .register .bottom { - background-image: url("https://h5.yixiang.co/static/images/registerB.png"); + // background-image: url("https://wx.yixiang.co/static/images/registerB.png"); background-repeat: no-repeat; background-size: 100% 100%; width: 6.2*100rpx; @@ -7484,9 +7514,17 @@ page { position: fixed; left: 0; right: 0; + + // #ifdef H5 + top: 88rpx; + // #endif + + // #ifndef H5 top: 0; + // #endif + z-index: 9; - border-bottom: 1px solid #f5f5f5; + // border-bottom: 1px solid #555; } .productSort .header .input { @@ -7748,7 +7786,7 @@ page { } .priceChange .priceTitle { - background: url("https://h5.yixiang.co/static/images/pricetitle.jpg") no-repeat; + background: url("https://wx.yixiang.co/static/images/pricetitle.jpg") no-repeat; background-size: 100% 100%; width: 100%; height: 1.6*100rpx; @@ -8603,3 +8641,676 @@ rich-text { } + + +/*单行文本溢出省略号*/ +.one-t { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + transition: all linear 0.2s; +} + +/*多行文本溢出省略号*/ +.more-t { + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + transition: all linear 0.2s; +} + +/* ================== + flex布局(colorui里面也有相关基础样式) + ==================== */ +/* x水平排列*/ +.x-f { + display: flex; + align-items: center; +} + +/*x两端且水平居中*/ +.x-bc { + display: flex; + justify-content: space-between; + align-items: center; +} + +/*x平分且水平居中*/ +.x-ac { + display: flex; + justify-content: space-around; + align-items: center; +} + +/*x水平靠上对齐*/ +.x-start { + display: flex; + align-items: flex-start; +} + +/*x水平靠下对齐*/ +.x-end { + display: flex; + align-items: flex-end; +} + +/*上下左右居中*/ +.x-c { + display: flex; + justify-content: center; + align-items: center; +} + +/*y竖直靠左*/ +.y-start { + display: flex; + flex-direction: column; + align-items: flex-start; +} + +/*y竖直靠右*/ +.y-end { + display: flex; + flex-direction: column; + align-items: flex-end; +} + +/*y竖直居中*/ +.y-f { + display: flex; + flex-direction: column; + align-items: center; +} + +// y竖直两端 +.y-b { + display: flex; + flex-direction: column; + justify-content: space-between; +} + +/*y竖直两端居中*/ +.y-bc { + display: flex; + flex-direction: column; + align-items: center; + justify-content: space-between; +} + + +/* ================== + 自定义变量 + ==================== */ +/*盒子模型*/ +.mt2 { + margin-top: 2rpx; +} + +.mr2 { + margin-right: 2rpx; +} + +.mb2 { + margin-bottom: 2rpx; +} + +.ml2 { + margin-left: 2rpx; +} + +.mx2 { + margin-left: 2rpx; + margin-right: 2rpx; +} + +.my2 { + margin-top: 2rpx; + margin-bottom: 2rpx; +} + +.ma2 { + margin: 2rpx; +} + +.mt4 { + margin-top: 4rpx; +} + +.mr4 { + margin-right: 4rpx; +} + +.mb4 { + margin-bottom: 4rpx; +} + +.ml4 { + margin-left: 4rpx; +} + +.mx4 { + margin-left: 4rpx; + margin-right: 4rpx; +} + +.my4 { + margin-top: 4rpx; + margin-bottom: 4rpx; +} + +.ma4 { + margin: 4rpx; +} + +.mt8 { + margin-top: 8rpx; +} + +.mr8 { + margin-right: 8rpx; +} + +.mb8 { + margin-bottom: 8rpx; +} + +.ml8 { + margin-left: 8rpx; +} + +.mx8 { + margin-left: 8rpx; + margin-right: 8rpx; +} + +.my8 { + margin-top: 8rpx; + margin-bottom: 8rpx; +} + +.ma8 { + margin: 8rpx; +} + +.mt10 { + margin-top: 10rpx; +} + +.mr10 { + margin-right: 10rpx; +} + +.mb10 { + margin-bottom: 10rpx; +} + +.ml10 { + margin-left: 10rpx; +} + +.mx10 { + margin-left: 10rpx; + margin-right: 10rpx; +} + +.my10 { + margin-top: 10rpx; + margin-bottom: 10rpx; +} + +.ma10 { + margin: 10rpx; +} + +.mt15 { + margin-top: 15rpx; +} + +.mr15 { + margin-right: 15rpx; +} + +.mb15 { + margin-bottom: 15rpx; +} + +.ml15 { + margin-left: 15rpx; +} + +.mx15 { + margin-left: 15rpx; + margin-right: 15rpx; +} + +.my15 { + margin-top: 15rpx; + margin-bottom: 15rpx; +} + +.ma15 { + margin: 15rpx; +} + +.mt20 { + margin-top: 20rpx; +} + +.mr20 { + margin-right: 20rpx; +} + +.mb20 { + margin-bottom: 20rpx; +} + +.ml20 { + margin-left: 20rpx; +} + +.mx20 { + margin-left: 20rpx; + margin-right: 20rpx; +} + +.my20 { + margin-top: 20rpx; + margin-bottom: 20rpx; +} + +.ma20 { + margin: 20rpx; +} + +.mt24 { + margin-top: 24rpx; +} + +.mr24 { + margin-right: 24rpx; +} + +.mb24 { + margin-bottom: 24rpx; +} + +.ml24 { + margin-left: 24rpx; +} + +.mx24 { + margin-left: 24rpx; + margin-right: 24rpx; +} + +.my24 { + margin-top: 24rpx; + margin-bottom: 24rpx; +} + +.ma24 { + margin: 24rpx; +} + +.mt30 { + margin-top: 30rpx; +} + +.mr30 { + margin-right: 30rpx; +} + +.mb30 { + margin-bottom: 30rpx; +} + +.ml30 { + margin-left: 30rpx; +} + +.mx30 { + margin-left: 30rpx; + margin-right: 30rpx; +} + +.my30 { + margin-top: 30rpx; + margin-bottom: 30rpx; +} + +.ma30 { + margin: 30rpx; +} + +.pt2 { + padding-top: 2rpx; +} + +.pr2 { + padding-right: 2rpx; +} + +.pb2 { + padding-bottom: 2rpx; +} + +.pl2 { + padding-left: 2rpx; +} + +.px2 { + padding-left: 2rpx; + padding-right: 2rpx; +} + +.py2 { + padding-top: 2rpx; + padding-bottom: 2rpx; +} + +.pa2 { + padding: 2rpx; +} + +.pt4 { + padding-top: 4rpx; +} + +.pr4 { + padding-right: 4rpx; +} + +.pb4 { + padding-bottom: 4rpx; +} + +.pl4 { + padding-left: 4rpx; +} + +.px4 { + padding-left: 4rpx; + padding-right: 4rpx; +} + +.py4 { + padding-top: 4rpx; + padding-bottom: 4rpx; +} + +.pa4 { + padding: 4rpx; +} + +.pt8 { + padding-top: 8rpx; +} + +.pr8 { + padding-right: 8rpx; +} + +.pb8 { + padding-bottom: 8rpx; +} + +.pl8 { + padding-left: 8rpx; +} + +.px8 { + padding-left: 8rpx; + padding-right: 8rpx; +} + +.py8 { + padding-top: 8rpx; + padding-bottom: 8rpx; +} + +.pa8 { + padding: 8rpx; +} + +.pt10 { + padding-top: 10rpx; +} + +.pr10 { + padding-right: 10rpx; +} + +.pb10 { + padding-bottom: 10rpx; +} + +.pl10 { + padding-left: 10rpx; +} + +.px10 { + padding-left: 10rpx; + padding-right: 10rpx; +} + +.py10 { + padding-top: 10rpx; + padding-bottom: 10rpx; +} + +.pa10 { + padding: 10rpx; +} + +.pt15 { + padding-top: 15rpx; +} + +.pr15 { + padding-right: 15rpx; +} + +.pb15 { + padding-bottom: 15rpx; +} + +.pl15 { + padding-left: 15rpx; +} + +.px15 { + padding-left: 15rpx; + padding-right: 15rpx; +} + +.py15 { + padding-top: 15rpx; + padding-bottom: 15rpx; +} + +.pa15 { + padding: 15rpx; +} + +.pt20 { + padding-top: 20rpx; +} + +.pr20 { + padding-right: 20rpx; +} + +.pb20 { + padding-bottom: 20rpx; +} + +.pl20 { + padding-left: 20rpx; +} + +.px20 { + padding-left: 20rpx; + padding-right: 20rpx; +} + +.py20 { + padding-top: 20rpx; + padding-bottom: 20rpx; +} + +.pa20 { + padding: 20rpx; +} + +.pt24 { + padding-top: 24rpx; +} + +.pr24 { + padding-right: 24rpx; +} + +.pb24 { + padding-bottom: 24rpx; +} + +.pl24 { + padding-left: 24rpx; +} + +.px24 { + padding-left: 24rpx; + padding-right: 24rpx; +} + +.py24 { + padding-top: 24rpx; + padding-bottom: 24rpx; +} + +.pa24 { + padding: 24rpx; +} + +.pt30 { + padding-top: 30rpx; +} + +.pr30 { + padding-right: 30rpx; +} + +.pb30 { + padding-bottom: 30rpx; +} + +.pl30 { + padding-left: 30rpx; +} + +.px30 { + padding-left: 30rpx; + padding-right: 30rpx; +} + +.py30 { + padding-top: 30rpx; + padding-bottom: 30rpx; +} + +.pa30 { + padding: 30rpx; +} + + +.min-goods { + width: 152rpx; + background: #fff; + + .img-box { + width: 152rpx; + height: 152rpx; + overflow: hidden; + position: relative; + + .tag { + position: absolute; + left: 0; + bottom: 0rpx; + z-index: 2; + line-height: 35rpx; + background: linear-gradient(132deg, rgba(243, 223, 177, 1), rgba(243, 223, 177, 1), rgba(236, 190, 96, 1)); + border-radius: 0px 18rpx 18rpx 0px; + padding: 0 10rpx; + font-size: 24rpx; + font-family: PingFang SC; + font-weight: bold; + color: rgba(120, 79, 6, 1); + } + + .img { + width: 100%; + background-color: #ccc; + } + } + + .price-box { + width: 100%; + margin-top: 10rpx; + + .seckill-current { + font-size: 30rpx; + font-weight: 500; + color: rgba(225, 33, 43, 1); + } + + .original { + font-size: 20rpx; + font-weight: 400; + text-decoration: line-through; + color: rgba(153, 153, 153, 1); + margin-left: 14rpx; + } + } + + .title { + font-size: 26rpx; + } +} + +.contacButton { + padding: 0; + background-color: #fff; + line-height: 25rpx; +} + +.contacButton::after { + border: 0; +} + +.footer .icon-shoucang1 { + color: #eb3729; +} + + +.ytabs { + .nav { + margin: 0 auto; + padding: 0 30rpx; + width: 100%; + box-sizing: border-box; + } + + .nav .item { + flex: 1; + position: relative; + } +} + +.shoppingCart, +.user, +.container { + height: 100%; +} diff --git a/components/Adv.vue b/components/Adv.vue new file mode 100644 index 0000000..d3d8146 --- /dev/null +++ b/components/Adv.vue @@ -0,0 +1,207 @@ + + + + + diff --git a/components/Loading.vue b/components/Loading.vue index 90a7a84..1cb0d4d 100644 --- a/components/Loading.vue +++ b/components/Loading.vue @@ -1,27 +1,21 @@ diff --git a/components/UserEvaluation.vue b/components/UserEvaluation.vue index 8e28e18..545192a 100644 --- a/components/UserEvaluation.vue +++ b/components/UserEvaluation.vue @@ -1,50 +1,52 @@ diff --git a/components/sh-activity-goods.vue b/components/sh-activity-goods.vue new file mode 100644 index 0000000..c596810 --- /dev/null +++ b/components/sh-activity-goods.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/components/sh-adv.vue b/components/sh-adv.vue new file mode 100644 index 0000000..f848c2a --- /dev/null +++ b/components/sh-adv.vue @@ -0,0 +1,256 @@ + + + + + diff --git a/components/sh-groupon.vue b/components/sh-groupon.vue new file mode 100644 index 0000000..59ae764 --- /dev/null +++ b/components/sh-groupon.vue @@ -0,0 +1,197 @@ + + + + + diff --git a/config/index.js b/config/index.js index 48454f6..4a72380 100644 --- a/config/index.js +++ b/config/index.js @@ -1,5 +1,5 @@ -// export const VUE_APP_API_URL = 'http://natapp.xinxintuan.co/api'; -export const VUE_APP_API_URL = 'https://wxapi.yixiang.co/api'; -// export const VUE_APP_API_URL = 'https://h5api.dayouqiantu.cn/api'; -export const VUE_APP_RESOURCES_URL = 'https://h5.yixiang.co/static'; +// export const VUE_APP_API_URL = 'https://wxapi.yixiang.co/api'; +export const VUE_APP_API_URL = 'http://127.0.0.1:8008/api'; +export const VUE_APP_RESOURCES_URL = 'https://wx.yixiang.co/static'; + diff --git a/libs/order.js b/libs/order.js index 14598e5..eb89768 100644 --- a/libs/order.js +++ b/libs/order.js @@ -73,80 +73,120 @@ export function delOrderHandle(orderId) { } // 使用订单号进行支付 -export function payOrderHandle(orderId, type, from) { +export async function payOrderHandle(orderId, type, from) { return new Promise((resolve, reject) => { - // dialog.loading.open(""); + uni.showLoading({ + title: "支付中", + mask: true + }); payOrder(orderId, type, from) - .then(res => { - handleOrderPayResults(res.data) + .then(async res => { + await handleOrderPayResults(res.data, type) + resolve() }) .catch(err => { - dialog.loading.close(); - dialog.toast({ mes: err.msg || "订单支付失败" }); + reject() + uni.hideLoading() + uni.showToast({ + title: err.msg || err.response.data.msg || err.response.data.message || '订单支付失败', + icon: "none", + duration: 2000, + }); }); }); } // 处理调用支付接口的逻辑 // @type create(创建订单)||pay(支付订单) -export function handleOrderPayResults(data, type) { - switch (data.status) { - // 订单号已存在 - case "ORDER_EXIST": - // 取消支付 - case "EXTEND_ORDER": - uni.showToast({ - title: res.msg, - icon: "none", - duration: 2000, - }); - goOrderDetails(data.result.orderId, type) - break; - case "PAY_DEFICIENCY": - break; - // 支付出错 - case "PAY_ERROR": - uni.showToast({ - title: res.msg, - icon: "none", - duration: 2000, - }); - goOrderDetails(data.result.orderId, type) - break; - // 未传递支付环境 - case "SUCCESS": - uni.showToast({ - title: res.msg, - icon: "none", - duration: 2000, - }); - goOrderDetails(data.result.orderId, type) - break; - // H5支付 - case "WECHAT_H5_PAY": - goOrderDetails(data.result.orderId, type) - console.log(data) - setTimeout(() => { - // #ifdef H5 - // "https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx15171343713577e9f3a418b0865ef90000&package=2547890641" - // location.href = data.result.jsConfig.mweb_url; - // #endif - }, 100); - break; - // 小程序支付 - case "WECHAT_PAY": - weappPay(data.result.jsConfig).finally(() => { +export function handleOrderPayResults(data, type, payType) { + console.log(data, type, payType) + + console.log(data, type) + return new Promise((resolve, reject) => { + uni.hideLoading() + switch (data.status) { + // 订单号已存在 + case "ORDER_EXIST": + resolve() + break; + // 取消支付 + case "EXTEND_ORDER": + uni.showToast({ + title: data.msg, + icon: "none", + duration: 2000, + }); + resolve() goOrderDetails(data.result.orderId, type) - }); - break; - // APP支付 - case "WECHAT_APP_PAY": - - weappPay(data.result.jsConfig).finally(() => { + break; + case "PAY_DEFICIENCY": + break; + // 支付出错 + case "PAY_ERROR": + uni.showToast({ + title: data.msg, + icon: "none", + duration: 2000, + }); + reject() goOrderDetails(data.result.orderId, type) - }); - break; - } + break; + // 未传递支付环境 + case "SUCCESS": + uni.showToast({ + title: data.msg || data.payMsg, + icon: "none", + duration: 2000, + }); + resolve() + goOrderDetails(data.result.orderId, type) + break; + // H5支付 + case "WECHAT_H5_PAY": + goOrderDetails(data.result.orderId, type) + console.log(data) + setTimeout(() => { + resolve() + // #ifdef H5 + // "https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx15171343713577e9f3a418b0865ef90000&package=2547890641" + // location.href = data.result.jsConfig.mweb_url; + // #endif + }, 100); + break; + // 小程序支付 + case "WECHAT_PAY": + weappPay(data.result.jsConfig).finally(() => { + resolve() + goOrderDetails(data.result.orderId, type) + }).then(res => { + // #ifdef MP-WEIXIN + subscribeMessage() + // #endif + }) + break; + // APP支付 + case "WECHAT_APP_PAY": + weappPay(data.result.jsConfig).finally(() => { + resolve() + goOrderDetails(data.result.orderId, type) + }) + break; + } + }) +} + +export function subscribeMessage() { + // 调用订阅 + console.log('调用订阅') + uni.requestSubscribeMessage({ + tmplIds: ['W5r2c2kzhbq8uxStkPAVx_sk-5aapMFCqe7b7KU5jXI', '2CB_1UyQrbnlyjJa5syraqJ3cfztPPDOAHe3DEXpMjg', 'vuztugw9VbKbKJDAAVePkjqPpT5mdoREpd4Aq7EGPRU'], + success(res) { + console.log(res) + }, + fail(error){ + console.log(error) + } + }) } diff --git a/libs/wechat.js b/libs/wechat.js index 59f1a2c..01a0e49 100644 --- a/libs/wechat.js +++ b/libs/wechat.js @@ -1,3 +1,4 @@ +import { subscribeMessage } from "@/libs/order"; import { getProvider } from "@/utils"; import WechatJSSDK from "wechat-jssdk/dist/client.umd"; import { getWechatConfig, wechatAuth } from "@/api/public"; @@ -9,7 +10,6 @@ import dayjs from "dayjs"; // 支付模块 export const weappPay = (option) => { return new Promise((resolve, reject) => { - console.log(option) if (store.state.$deviceType == 'weixinh5') { setTimeout(() => { location.href = option.mweb_url; @@ -59,11 +59,16 @@ export const weappPay = (option) => { clearTimeout(time) resolve(success) }, 3000) + // #ifdef MP-WEIXIN + subscribeMessage() + // #endif }, fail: (error) => { console.log(error) if (error.errMsg == 'requestPayment:fail cancel') { uni.showToast({ title: '已取消支付', icon: 'none', duration: 5000 }); + } else { + uni.showToast({ title: error || error.msg, icon: 'none', duration: 5000 }); } reject(error) } @@ -119,6 +124,7 @@ export function clearAuthStatus() { export function oAuth() { console.log('处理微信授权') + console.log('处理微信授权cookie',cookie.get("spread")) console.log(store) console.log(store.state) return new Promise((resolve, reject) => { @@ -142,8 +148,7 @@ export function auth(code) { console.log('获取微信授权') return new Promise((resolve, reject) => { let loginType = cookie.get(LOGINTYPE); - debugger - wechatAuth(code, parseInt(cookie.get("spread")), loginType) + wechatAuth(code, cookie.get("spread"), loginType) .then(({ data }) => { console.log(data) const expires_time = dayjs(data.expires_time); @@ -152,12 +157,10 @@ export function auth(code) { cookie.set(WX_AUTH, code, expires_time); cookie.remove(STATE_KEY); loginType && cookie.remove(LOGINTYPE); - debugger resolve(); }) .catch(reject); }).catch(error => { - debugger console.log(error) }) } @@ -347,12 +350,20 @@ export function wxShowLocation() { cancel() { cookie.remove(LATITUDE); cookie.remove(LONGITUDE); - this.$dialog.error("取消获取位置"); + uni.showToast({ + title: "取消获取位置", + icon: "none", + duration: 2000, + }); }, fail() { cookie.remove(LATITUDE); cookie.remove(LONGITUDE); - this.$dialog.error("授权失败"); + uni.showToast({ + title: "授权失败", + icon: "none", + duration: 2000, + }); } }); } diff --git a/main.js b/main.js index 07fe639..07e1e9d 100644 --- a/main.js +++ b/main.js @@ -99,7 +99,9 @@ import { ready, wxShowLocation, } from '@/libs/wechat' + import { isWeixin } from '@/utils' + // 判断是否是微信浏览器 if (isWeixin()) { Vue.prototype.$deviceType = 'weixin' diff --git a/manifest.json b/manifest.json index 6bbb11d..c647f3d 100644 --- a/manifest.json +++ b/manifest.json @@ -139,6 +139,14 @@ "scope.userLocation" : { "desc" : "你的位置信息将用于小程序位置接口的效果展示" } + }, + "plugins" : { + "live-player-plugin" : { + // 注意填写该直播组件最新版本号,微信开发者工具调试时可获取最新版本号(复制时请去掉注释) + "version" : "1.1.10", + // 必须填该直播组件appid,该示例值即为直播组件appid(复制时请去掉注释) + "provider" : "wx2b03c6e691cd7370" + } } }, "mp-alipay" : { @@ -164,6 +172,7 @@ "key" : "" } } - } + }, + "domain" : "h5.yixiang.co" } } diff --git a/package-lock.json b/package-lock.json index f082aaa..4acba4f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,6 +17,21 @@ "defer-to-connect": "^1.0.1" } }, + "@types/html5plus": { + "version": "1.0.1", + "resolved": "https://registry.npm.taobao.org/@types/html5plus/download/@types/html5plus-1.0.1.tgz", + "integrity": "sha1-EjFll+Qvb4fLJbnJOGD1fNObOQY=", + "dev": true + }, + "@types/uni-app": { + "version": "1.4.3", + "resolved": "https://registry.npm.taobao.org/@types/uni-app/download/@types/uni-app-1.4.3.tgz", + "integrity": "sha1-JRwBK9JAi2m/UB/g3I92rbOwV2w=", + "dev": true, + "requires": { + "vue": "^2.6.8" + } + }, "animate.css": { "version": "3.7.2", "resolved": "https://registry.npm.taobao.org/animate.css/download/animate.css-3.7.2.tgz", @@ -193,6 +208,14 @@ "resolved": "https://registry.npm.taobao.org/mimic-response/download/mimic-response-1.0.1.tgz?cache=0&sync_timestamp=1589481629775&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmimic-response%2Fdownload%2Fmimic-response-1.0.1.tgz", "integrity": "sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=" }, + "miniapp-color-thief": { + "version": "1.0.5", + "resolved": "https://registry.npm.taobao.org/miniapp-color-thief/download/miniapp-color-thief-1.0.5.tgz", + "integrity": "sha1-CdeHKwTUHIERDK9FbfVAOuOZ7iw=", + "requires": { + "quantize": "^1.0.2" + } + }, "mongodb": { "version": "3.4.1", "resolved": "https://registry.npm.taobao.org/mongodb/download/mongodb-3.4.1.tgz", @@ -296,6 +319,11 @@ "once": "^1.3.1" } }, + "quantize": { + "version": "1.0.2", + "resolved": "https://registry.npm.taobao.org/quantize/download/quantize-1.0.2.tgz", + "integrity": "sha1-0lrCAKd7bXD0ASfKFxoQ4zyFRt4=" + }, "regexp-clone": { "version": "1.0.0", "resolved": "https://registry.npm.taobao.org/regexp-clone/download/regexp-clone-1.0.0.tgz", @@ -379,6 +407,12 @@ "prepend-http": "^2.0.0" } }, + "vue": { + "version": "2.6.12", + "resolved": "https://registry.npm.taobao.org/vue/download/vue-2.6.12.tgz", + "integrity": "sha1-9evU+mvShpQD4pqJau1JBEVskSM=", + "dev": true + }, "vue-ydui": { "version": "1.2.6", "resolved": "https://registry.npm.taobao.org/vue-ydui/download/vue-ydui-1.2.6.tgz", diff --git a/package.json b/package.json index 9aa97cd..8b20679 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,12 @@ "async-validator": "^3.2.4", "dayjs": "^1.8.22", "jweixin-module": "^1.6.0", + "miniapp-color-thief": "^1.0.5", "vue-ydui": "^1.2.6", "wechat-jssdk": "^5.0.4" + }, + "devDependencies": { + "@types/html5plus": "^1.0.1", + "@types/uni-app": "^1.4.3" } } diff --git a/pages.json b/pages.json index abfa59b..2bebce3 100644 --- a/pages.json +++ b/pages.json @@ -39,7 +39,10 @@ { "path": "pages/home/index", "style": { - "navigationBarTitleText": "yshop商城" + "navigationBarTitleText": "yshop商城", + "navigationBarTextStyle": "white", + // "enablePullDownRefresh": true, + "navigationStyle": "custom" } }, { @@ -90,6 +93,12 @@ "navigationBarTitleText": "商品收藏" } }, + { + "path": "pages/shop/GoodsFoot/index", + "style": { + "navigationBarTitleText": "我的足迹" + } + }, { "path": "pages/shop/news/NewsDetail/index", "style": { @@ -401,13 +410,20 @@ "style": { "navigationBarTitleText": "地图" } + }, + { + "path": "pages/shop/Live/LiveList/index", + "style": { + "navigationBarTitleText": "直播列表" + } } ], "globalStyle": { "navigationBarTextStyle": "black", - "navigationBarTitleText": "uni-app", + "navigationBarTitleText": "Yshop", "navigationBarBackgroundColor": "#F8F8F8", - "backgroundColor": "#F8F8F8" + "backgroundColor": "#F8F8F8", + "navigationStyle": "default" }, "tabBar": { "color": "#282828", @@ -415,9 +431,9 @@ "borderStyle": "black", "backgroundColor": "#ffffff", "height": "50px", - "fontSize": "10px", - "iconWidth": "24px", - "spacing": "3px", + "fontSize": "8px", + "iconWidth": "16px", + "spacing": "-3px", "list": [{ "pagePath": "pages/home/index", "iconPath": "static/icon-home.png", diff --git a/pages/Loading/index.vue b/pages/Loading/index.vue index 7171ff8..43cd7fe 100644 --- a/pages/Loading/index.vue +++ b/pages/Loading/index.vue @@ -18,7 +18,7 @@ import { mapState, mapMutations, mapActions } from "vuex"; import { wxappAuth, getUser } from "@/api/user"; import dayjs from "dayjs"; import cookie from "@/utils/store/cookie"; -import { parseQuery, login, handleQrCode } from "@/utils"; +import { parseQuery, login, handleQrCode ,getCurrentPageUrl,handleUrlParam} from "@/utils"; export default { name: "Loading", @@ -26,8 +26,11 @@ export default { return {}; }, onShow() { - + var url = handleQrCode(); + if(!url){ + url = handleUrlParam(getCurrentPageUrl()) + } // 判断是否是分销 if (url) { var spread = cookie.get("spread"); @@ -44,7 +47,7 @@ export default { } cookie.get("spread"); // this.toLaunch(); - if (this.$deviceType == "app") { + if (this.$deviceType == "app"||this.$deviceType == "h5") { // this.toLaunch(); this.$yrouter.switchTab({ path: "/pages/home/index" @@ -52,9 +55,9 @@ export default { return; } login().finally(() => { - // this.$yrouter.switchTab({ - // path: "/pages/home/index" - // }); + this.$yrouter.switchTab({ + path: "/pages/home/index" + }); }); }, methods: { diff --git a/pages/activity/DargainDetails/index.vue b/pages/activity/DargainDetails/index.vue index 39f059d..533b9ed 100644 --- a/pages/activity/DargainDetails/index.vue +++ b/pages/activity/DargainDetails/index.vue @@ -1,8 +1,8 @@ diff --git a/pages/activity/GoodsGroup/children/activity-card.vue b/pages/activity/GoodsGroup/children/activity-card.vue new file mode 100644 index 0000000..8c892f1 --- /dev/null +++ b/pages/activity/GoodsGroup/children/activity-card.vue @@ -0,0 +1,101 @@ + + + + + diff --git a/pages/activity/GoodsGroup/index.vue b/pages/activity/GoodsGroup/index.vue index 0ce7ad8..379e6b5 100644 --- a/pages/activity/GoodsGroup/index.vue +++ b/pages/activity/GoodsGroup/index.vue @@ -1,90 +1,232 @@ + + + diff --git a/pages/activity/GoodsSeckill/index.vue b/pages/activity/GoodsSeckill/index.vue index 7635975..9dc0081 100644 --- a/pages/activity/GoodsSeckill/index.vue +++ b/pages/activity/GoodsSeckill/index.vue @@ -5,6 +5,9 @@ +
+ +
{{ item.time }} @@ -19,26 +22,15 @@
- + - + @@ -46,28 +38,22 @@ 限时价 - + ¥{{itemSeckill.price||''}} - 马上抢 + 马上抢 已售磬 - 即将开始 + 即将开始 + 已结束 - + @@ -77,185 +63,215 @@ diff --git a/pages/activity/GroupDetails/index.vue b/pages/activity/GroupDetails/index.vue index 278dea0..dd6402f 100644 --- a/pages/activity/GroupDetails/index.vue +++ b/pages/activity/GroupDetails/index.vue @@ -1,12 +1,15 @@ diff --git a/pages/activity/GroupRule/index.vue b/pages/activity/GroupRule/index.vue index ba23473..30ad73d 100644 --- a/pages/activity/GroupRule/index.vue +++ b/pages/activity/GroupRule/index.vue @@ -111,6 +111,7 @@ export default { pinkT: [], //团长信息 storeCombination: [], //拼团产品 pinkId: 0, + uniqueId: "", count: 0, //拼团剩余人数 iShidden: false }; @@ -140,7 +141,7 @@ export default { var data = {}; data.productId = that.storeCombination.productId; data.cartNum = that.pinkT.totalNum; - data.uniqueId = ""; + data.uniqueId = that.uniqueId; data.combinationId = that.storeCombination.id; data.new = 1; postCartAdd(data) @@ -208,6 +209,7 @@ export default { that.$set(that, "pinkBool", res.data.pinkBool); that.$set(that, "isOk", res.data.isOk); that.$set(that, "currentPinkOrder", res.data.currentPinkOrder); + that.$set(that, "uniqueId", res.data.uniqueId); }); }, //拼团取消 diff --git a/pages/activity/Poster/index.vue b/pages/activity/Poster/index.vue index 22a4d49..a199a70 100644 --- a/pages/activity/Poster/index.vue +++ b/pages/activity/Poster/index.vue @@ -9,71 +9,81 @@ diff --git a/pages/activity/SeckillDetails/index.vue b/pages/activity/SeckillDetails/index.vue index 987a761..cc45195 100644 --- a/pages/activity/SeckillDetails/index.vue +++ b/pages/activity/SeckillDetails/index.vue @@ -10,15 +10,8 @@ 距秒杀结束仅剩 - + @@ -33,203 +26,382 @@ + + + + {{ attrTxt }}: + {{ attrValue }} + + + 产品介绍 + + - - - 立即购买 + + + + + + + + + 收藏 + + + + 收藏 + + + + 单独购买 + + + 立即购买 + + + +
+
原价购买
+
已售罄
+
+
+
原价购买
+
即将开始
+
+
+
原价购买
+
已结束
+
+
+ - +
diff --git a/pages/authorization/index.vue b/pages/authorization/index.vue index f22f61f..136ea5b 100644 --- a/pages/authorization/index.vue +++ b/pages/authorization/index.vue @@ -1,219 +1,192 @@ diff --git a/pages/home/components/Banner.vue b/pages/home/components/Banner.vue new file mode 100644 index 0000000..8146a73 --- /dev/null +++ b/pages/home/components/Banner.vue @@ -0,0 +1,173 @@ + + + + + diff --git a/pages/home/components/FirstNewProduct.vue b/pages/home/components/FirstNewProduct.vue new file mode 100644 index 0000000..31bde33 --- /dev/null +++ b/pages/home/components/FirstNewProduct.vue @@ -0,0 +1,216 @@ + + + + + + diff --git a/pages/home/components/HotCommodity.vue b/pages/home/components/HotCommodity.vue new file mode 100644 index 0000000..3a4b25b --- /dev/null +++ b/pages/home/components/HotCommodity.vue @@ -0,0 +1,219 @@ + + + + + + diff --git a/pages/home/components/Live.vue b/pages/home/components/Live.vue new file mode 100644 index 0000000..ed342f4 --- /dev/null +++ b/pages/home/components/Live.vue @@ -0,0 +1,249 @@ + + + + + diff --git a/pages/home/components/ProductsRecommended.vue b/pages/home/components/ProductsRecommended.vue new file mode 100644 index 0000000..fde1ec6 --- /dev/null +++ b/pages/home/components/ProductsRecommended.vue @@ -0,0 +1,215 @@ + + + + + + diff --git a/pages/home/components/PromoteProduct.vue b/pages/home/components/PromoteProduct.vue new file mode 100644 index 0000000..1cb219a --- /dev/null +++ b/pages/home/components/PromoteProduct.vue @@ -0,0 +1,216 @@ + + + + + + diff --git a/pages/home/index.vue b/pages/home/index.vue index 2816c2f..5956cd8 100644 --- a/pages/home/index.vue +++ b/pages/home/index.vue @@ -1,6 +1,19 @@ diff --git a/pages/order/OrderDetails/index.vue b/pages/order/OrderDetails/index.vue index eb38893..b2d9044 100644 --- a/pages/order/OrderDetails/index.vue +++ b/pages/order/OrderDetails/index.vue @@ -126,7 +126,7 @@ {{ orderInfo.realName }} {{ orderInfo.userPhone }} - + {{ orderInfo.userAddress }}
@@ -134,7 +134,7 @@
{{ system_store.name}} {{ system_store.phone }} - +
{{ system_store.address }}
@@ -366,6 +366,15 @@ export default { }, }); }, + //拨打电话 + telPhone(phoneNumber) { + uni.makePhoneCall({ + phoneNumber: phoneNumber, + fail() { + console.log("取消拨打"); + } + }); + }, showChang: function (data) { // 这里判断是不是微信小程序 this.$yrouter.push({ diff --git a/pages/order/OrderSubmission/index.vue b/pages/order/OrderSubmission/index.vue index 31cabc5..dbeeaa0 100644 --- a/pages/order/OrderSubmission/index.vue +++ b/pages/order/OrderSubmission/index.vue @@ -2,24 +2,12 @@ - - + + - + {{ addressInfo.realName }} @@ -35,11 +23,7 @@ -
+
{{ storeItems.name }} @@ -69,10 +53,7 @@ - + 积分抵扣 @@ -124,33 +105,21 @@ 支付方式 - + 微信支付 微信快捷支付 - + 微信支付 微信快捷支付 - + 余额支付 @@ -185,392 +154,396 @@ 立即结算 - - + + diff --git a/pages/orderAdmin/AdminOrder/index.vue b/pages/orderAdmin/AdminOrder/index.vue index 1937543..bc1809c 100644 --- a/pages/orderAdmin/AdminOrder/index.vue +++ b/pages/orderAdmin/AdminOrder/index.vue @@ -66,9 +66,10 @@ 下单时间: - - - + + {{ orderInfo.createTime }} + + 支付状态: diff --git a/pages/orderAdmin/AdminOrderList/index.vue b/pages/orderAdmin/AdminOrderList/index.vue index 0f32994..ad161ba 100644 --- a/pages/orderAdmin/AdminOrderList/index.vue +++ b/pages/orderAdmin/AdminOrderList/index.vue @@ -12,9 +12,9 @@ 订单号:{{ item.orderId }} - + 下单时间: - + {{ item.createTime }} @@ -38,10 +38,7 @@ 共{{ item.totalNum }}件商品,应支付 ¥{{ item.payPrice }} - ( 邮费 ¥{{ - item.totalPostage - }} - ) + ( 邮费 ¥{{item.totalPostage}}) diff --git a/pages/shop/GoodsCollection/index.vue b/pages/shop/GoodsCollection/index.vue index 3d432a0..92970e8 100644 --- a/pages/shop/GoodsCollection/index.vue +++ b/pages/shop/GoodsCollection/index.vue @@ -47,6 +47,7 @@ export default { return { page: 1, limit: 20, + type:'collect', collectProductList: [], loadTitle: "", loading: false, @@ -71,7 +72,7 @@ export default { if (that.loading) return; //阻止下次请求(false可以进行请求); if (that.loadend) return; //阻止结束当前请求(false可以进行请求); that.loading = true; - getCollectUser(that.page, that.limit).then(res => { + getCollectUser(that.page, that.limit,that.type).then(res => { that.loading = false; //apply();js将一个数组插入另一个数组; that.collectProductList.push.apply(that.collectProductList, res.data); diff --git a/pages/shop/GoodsCon/index.vue b/pages/shop/GoodsCon/index.vue index 5c68e9c..4852dad 100644 --- a/pages/shop/GoodsCon/index.vue +++ b/pages/shop/GoodsCon/index.vue @@ -1,21 +1,17 @@ + + 产品介绍 + + + + + + + + 收藏 @@ -155,15 +165,17 @@ + + + - + + + + @@ -185,516 +197,574 @@ diff --git a/pages/shop/GoodsFoot/index.vue b/pages/shop/GoodsFoot/index.vue new file mode 100644 index 0000000..0c13202 --- /dev/null +++ b/pages/shop/GoodsFoot/index.vue @@ -0,0 +1,102 @@ + + diff --git a/pages/shop/Live/LiveList/index.vue b/pages/shop/Live/LiveList/index.vue new file mode 100644 index 0000000..287f01a --- /dev/null +++ b/pages/shop/Live/LiveList/index.vue @@ -0,0 +1,182 @@ + + + + + diff --git a/pages/shop/ShoppingCart/index.vue b/pages/shop/ShoppingCart/index.vue index 36f2a7e..8404e51 100644 --- a/pages/shop/ShoppingCart/index.vue +++ b/pages/shop/ShoppingCart/index.vue @@ -17,19 +17,13 @@ 购物数量 {{ count }} - {{ footerswitch ? '取消' : '管理' }} + + {{ footerswitch ? '取消' : '管理' }} - + @@ -46,31 +40,19 @@ {{ item.productInfo.storeName }} - 属性:{{ item.productInfo.attrInfo.sku }} + 属性:{{ item.productInfo.attrInfo.sku }} ¥{{ item.truePrice }} - - + - {{ item.cartNum }} - + - + + + + @click.prevent="plus(cartListValidIndex)">+ @@ -78,25 +60,15 @@ - 失效商品 + 失效商品 清空 - - + + 失效 @@ -104,10 +76,8 @@ {{ item.productInfo.storeName }} - 属性:{{ item.productInfo.attrInfo.sku }} + 属性:{{ item.productInfo.attrInfo.sku }} + 该商品已下架 @@ -160,77 +130,96 @@ - + diff --git a/pages/shop/StoreList/index.vue b/pages/shop/StoreList/index.vue index e5f6c78..434a77f 100644 --- a/pages/shop/StoreList/index.vue +++ b/pages/shop/StoreList/index.vue @@ -16,7 +16,7 @@ - + @@ -35,7 +35,7 @@ diff --git a/pages/user/PersonalData/index.vue b/pages/user/PersonalData/index.vue index 65d8a3e..b8d4416 100644 --- a/pages/user/PersonalData/index.vue +++ b/pages/user/PersonalData/index.vue @@ -43,20 +43,23 @@ - + --> 保存修改 + 退出登录 + diff --git a/pages/user/UserAccount/index.vue b/pages/user/UserAccount/index.vue index 9000191..0b6cfbc 100644 --- a/pages/user/UserAccount/index.vue +++ b/pages/user/UserAccount/index.vue @@ -8,7 +8,7 @@ 总资产(元) {{ now_money }} - + 充值 @@ -31,12 +31,12 @@ 消费记录 - + @@ -54,6 +54,7 @@ export default { props: {}, data: function() { return { + is_hide: "1", now_money: 0, orderStatusSum: 0, recharge: 0, @@ -82,6 +83,7 @@ export default { that.now_money = res.data.now_money; that.orderStatusSum = res.data.orderStatusSum; that.recharge = res.data.recharge; + this.is_hide = res.data.is_hide; }, err => { uni.showToast({ diff --git a/pages/user/address/AddAddress/index.vue b/pages/user/address/AddAddress/index.vue index 06c97eb..394a268 100644 --- a/pages/user/address/AddAddress/index.vue +++ b/pages/user/address/AddAddress/index.vue @@ -13,12 +13,7 @@ 所在地区 - + @@ -47,7 +42,7 @@ diff --git a/pages/user/promotion/Poster/index.vue b/pages/user/promotion/Poster/index.vue index 81ec453..b27c54c 100644 --- a/pages/user/promotion/Poster/index.vue +++ b/pages/user/promotion/Poster/index.vue @@ -4,12 +4,7 @@ - + @@ -18,143 +13,143 @@ - diff --git a/pages/user/promotion/UserCash/index.vue b/pages/user/promotion/UserCash/index.vue index 9b641f4..c9d1169 100644 --- a/pages/user/promotion/UserCash/index.vue +++ b/pages/user/promotion/UserCash/index.vue @@ -1,17 +1,20 @@ + diff --git a/pages/user/promotion/UserPromotion/index.vue b/pages/user/promotion/UserPromotion/index.vue index d228770..fd7cb9a 100644 --- a/pages/user/promotion/UserPromotion/index.vue +++ b/pages/user/promotion/UserPromotion/index.vue @@ -20,7 +20,6 @@ - diff --git a/static/images/logo_bg.png b/static/images/logo_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..636f1c12ee8776ff06453dc43b549047a20491fa GIT binary patch literal 7966 zcmd5><8vGi8%!G8ww*LK8smDg*<6fYsHCVcFfbTOin1CoFrR{8U|`vh;r_d%?N{XgN118>ExG^rWxeSC5C)+e z1pk@ian}H9!o0&FJ>a3vz6@Lv->htChO&*3V;vL%%EbLncd1RYtqd3w`Jxr1TT?x{ zAT?p?tdmm*rj_`zGjd*3H90j*h{MT4cfp)JWqivtW?UQMCx+8cEQvTqmm z>^~N~b$iPs`xGzDuqUp?^^Ndz@Gbc|8)E{hN4{?KRCt`JV0h@gHX9*8NXoackFE+O zMpvADWMw3^YYnK7fqWg1)!K&Msdg zR=Rc=mm&3Knn(~)?GVq$_4yJH(QJ1vR(C68EStgA?InY#s?DyWtAefFz$Vcs1Lh?f z_^K*G$%YWvn1R_smHcGAsz88gX4thxd!+r-&(DJpRw)65rx1R9JMgCACL&C&?+k++ zfVR2ZG{8&2rRdM-UDivvRp1lp)%aU)nek2yow?b8T)Q*2q_jj<}eow*mN3#t@1*B|+9v`jUcC;pT%%K@DnD(i3oq$}K}ligMalZ_nba{Tip zTo@uA6R#?e!9R_ou)UXiA@`EkzFJML%rj(Ti$1Ak3 zdSp~@!5pr+ z39{GrVh$0Ctn26i(ei4~LW4Ck<<5Rb%)&%0Q?yI(6EZhy0~mr^B@_K^I2b?$IE z2OpxWzg!CgwB64j9#fgs3Zq&Z`*_hF7e+#a#a^1E6y$!qlGYoyZ+^$>8m?ctL6i&C z4T(Saf~o~awZKmLYKc)!!1i`i&i(HeC=$4KJ#rT3F%_TjZM^}ZfYcWgBs&P!@KPUF z&Q;eAf3S7UsMcWs{W*dNq?Sg-zK2Lgd_$S0UaY@WU^e#I8_>Tt<`c=z|6-!rKitm! zk%Wc;yYPUk%WX$jrlPawE8Q>ZJV6yYj1S8P$Q)NX;AVJvZEE6pG5OLD{F^x z9qM6=b3(b4{|4Z1gwy{Mwdx#!&he60w@a)SpRxPH*^>Crr(}0(uK_KPmW6TMGVZH; zc$%LR%;T!Dvbljwu=ry}eF$Q{?WdHa25rIg_nM*SXf?GULG#e!^>GY=!J@cg@NCd- zH;(3#M_M%*@$uaz^BqUwu06F{yZuldCtV(L{NO!DIb4757%1FIb-AH&;+MJ)ZN^Q^ z)8_Xi<5|%!dkGPPU&5M>V04TF>mBb(5H9s8p~b0_AX!S9%6`w#EaPC!H6xTs#a4&? zQCnS`%WIJew%MPAntL)Ohup9b&`>W#5OFo&L*k8=dp46BicQ4PZTq)$Oe^{G8uQkk zwgauGN)I7R$42$(*l}2(;IuXfn7qJ_wT`37p$`60s55QJ;x@X1$j^LAicA<3wF{5( zbiJInca-3Da@;~ zjMSJuQGj=Y;DjYdB2GEX-)BkYiTFT~^FWs*JtoBKMx!~^TkNm?qk5rNfT!ia4Lm^B zvvn@J!mcN}$r2qLhu2u;>I?dvQ3;!`%X#!_;Y5=U5wW9Ozuj6p`LuN6f}X=$xmR5P z_r-RQk5HtmvfsK%22dl|?R_A}j806kV)`H7TT7Pq!nq?f=KFx)}$kQR8o z?&i-%9%6d#NWD)`OgJWdFZU89LY}*`&~p1)r?G@9!H%U4z8E9{0Yon>J~uRMfE0XP zn!|}GW$YrbhOHUXt#7d_ZXtar8Vu3^<6q zGsiU$I~8jmpVH0|q!H&#Qy99q62qP*1kB_Be7y0WoH!L6VxP0MxeV()fd-zl7e$XY zstmJv&DC6k!hJ=!>EX(Jd@#tAv}H6nr`5V7TFQk5mmS4x?Bp9yQirL0fi~&iy#ytt z`m`rXsw^qC(;Eso&oN?tN3OBT`P^?S7gp`z3j*RR_qRuiiAx$vkzBTGWX>6C{~3`) zU6y>sso2_}RoxZEct-t#W{c!&Cz{2u8_xvazLLZ)reMapHQb$mnAf*c?#kuXmrUGt zd$0|TD;w={LV6|z`PHq}OB&_f9Gh5i7N}X*XV=)dG*2xVZYapB7y>!bpF|F}b;Ky< z*Ga|m?x2;}4#c^>BQDo*BcvZ_@~ZRu8AM+`h^B!dQ*@8GyGql~D+?B8s_3Y&$bP|h zzR40DJhgs^Ri%NSMNgyu=myW)F^W^_<9*)R$^L_6R2CLGY*cgnQ@60EwVjdI__#?v zI3oDkW<^#fx#5?*LQ%g=zu*H6wE|OGQyA$a@sUfVag8#` zaXC0|`HM`!Eq3k1oOSR`o|%k9*n$7)bT`N}PRysCbZsC`2c)|al669N-8VbV zNeN#5_Hfi;)NeyL9W}&#@79nHQOI)^`-iMRONOATX+eGxSk{ql=7shVP*2|X5%Vn} z?l3%PG%&att1=Qoog5T*H4kr5)zB=XAP>Y?HzO3;Q~B4Xs#}GkZDsuTVqs})E$@MG z_Q7!5_81^oTBN~0gopas_t#qvZx2m^wgx*ft+oX{wF*&%1;}q%NaxRLe>{o|Q2b*d@x@SKvzBG7qrsVYmxh<2Ei933P< zKwXdX(TY>W&Q&w|GH)h#*x{Z?3-~jh82N^X`@?Ty`F!`vOMsyRw}Q%!V^jSHVcT3O z2$oyr7f;Pi?$MPrgRA5(g<&mKBGV`)WUoh&lxiF_7N|L03x5=A<-!J^3qzIcd9;Y- zj57neh2Iy6Hmxj5$_E7XKp#?@C*i#MosOMi-{$r34NBU9cnNh!5m9?tf>NC;7a6}Sz5_K8#Pl%zzF{9< zw+8J{X>fR`A(5vbJsGi$*JjW1c$rl(REw<9;Y|?|VTxgMZ|ugUewqdYyggP{JXL2| z{7!B~fTQi!be{I&4mjPvwXKa!p#%RkC9e6yNw43|=ICU6qd-b4VWxI^@n8>MX6CbI z{%aO3bKqK8Zt3Y&Z~2z_Mx$3sceI=IY_UGIEoL+d_q@o|*Rhftmv?HHZ5K zS`7;O=?{S!cBgMBVAlYPOQdEnp@yM6z@vh3h~tie8+C?WLDs`RY`hfn=jDp7dtSt7 zmND3Qq*A9XUFoT&C7XA1mxmj5Zf_L!< zMf}U@F_YK61~pqSHVz7D>aZEw*qtk7osTmx-!SZNLw?R`t5U3UUPn}B%ane|Y2#ru zAQG0A$;l8Pa5*SpO!afNUigW+guwic^}iL^|j4g=uVduv>=pF{1Az0zub7M*MZ?T zz0#%(kP5*`PSIEs)6=@R2s0x;kBeXG>-jDx*u)~-9@tsBiH1jpAM*C&y@C3&msplh zG~Z9j_FEosfT{h;^9ulYZWIpR%s*T!*!&yzaLNTfWSIPFj*ufaKx=YUd?c%QS7-g%({|Wm{Tys*Tg+ekDXl%ZL=E z3FNtGEg8o`^vnoxdyZZ@?^rkLsbTmg#>YRtHxSdPgA{Sb3@-0;o*);HHTb4b@VSn) z{H7{<*{XbBBZ9JlL6O{@5qoWmYcdk!bUZ8j$rf&tX@Sjsx*mNeL zjBL{y^)^$AN~RlWFj(bj%P3w@zehK8(Q=8NXkwSFSG3L& zLsB19%-=d?pHv`1C|t=pB3Byxh5A=~LwMrnRU_r)%Z+GUaI^|Sbn3PZL6xP#p!lm* zNx&Bex+KLYVdL>BM;}>c(8T`UgFAhK;1BIb3_nl-(Mj%OYAQ$66XTBR0luil{IHR^ zQ_~q2=MGxsS1c6PL{ozpSOz5%d{bqkF_ROsheZ=ECsS1^ zu*iAxG>96|p4Sb0WMW-y{2jJGRZ)Bj@@UaLfF=@_{8%as;Mg0wP*a@&mNy^LTa?nUAS4#Yc9>YhAS^MsU2=G&sh(X5 zmjQ4)>pBTgCrTF!!qpm+Bqv<3w0%kI{pm+(U&{k-fk!flI;c&7T>ZkuB=$q`?Lx0I z_*Taek%a&A}mC zcG5)I+Hkp2`E=o8t4t#$ne_wivnnvr4` z*IisvxD)$I!)e6T8~V<;ACi$N^c?$-{Rzi8kDy86Km(vBlw!K`aY@(|E^3(-v#IN> z#Q?I!?hg1ZMDak7ymUITG6|OyPN)5edJYIqZVFX1Hrlh4pNKL^aW3kI8zkYJw}mq5 z%$Ret=5T>YDW|=@{(^ut64RvM;?9#t^Hx)_l?y$Ky{sD`BFiIvwUztKbuYZhv1v)}HWx|qwmlI*()(wuQpxo_>vR}h< z$zAGV+@fZb(5%_aog6K!?6#d)7~@xOxz8)gsm}D%2UtA)WZv26GF0Dj%G%PP1x;K) zkwFIA`Dr-sb=zVO54W6fRVy=^#9=76X1cSS^7;FLDJit4^6R3chZRc+4ac70pyHs! zjqK{~dU)g3KukNbSvet$Oks^r^xd+Z)IMHeUT_G$hunMd#iH{BE{b+q_{Cx|Cg<(; z_u1j*=W%R@2aeDr@^EpJB3mp1Kloj@h+$_S>%H?2yv8I$E98N}lMSXCH=#k5cB2B? zK`hXi_rJOGliaA#&y>F+x)m3E^=6=CZf`k8k2?sqcc}END2f#8>lP>_g7?kDi?v@lx09 z^bWrmIrgH%U{wC;d}){FYIdcUah-Rr^7&e=El$m0i;^CW4B0JIam!&<)EB!P_pxzJ zGJQ|M{Z!%Pv48QYLWu)q-p#vf32TWLd-VM7nK1yxf9sTM{P&EUz4y9)8BISuoL1Buq?v~pUe6nqVT$3^2a+)l=QfXYz{hLj}v?*p|X+B_St)jhG z+C8JKbORZ6@WqrWGi}lHl@Ub*LD3z=ojeChQjxKkrXwdiERsUf5>htBONg;Mj1N9! z;q^gRop4)Ir2U%~$tjA0$`7w>sM64ccNQ7j%)-`zd~>=@)roKuZVko=pb<5dss-T4 zjicG-iv(Jh(9Ke*pDevaPEG=YBV(*fno0V1_+A>Vc)I7&=j!d~WT5OZ$Z3#eNS&6! zZuZx@MtS_R%A^XFiWxj&IfZD@**~cPIs@O_!b2xj)5?3hPLUthS5GsRYh!_VefD>s z^ZrnaCO99)=T#hDbE-R4zX?Bie+nFBqhjh&tOL=8a{u)y?ku;mw!L|V9~T&|JBJPs zb;rj@wWsC$J-kkGpqUNEEzo05XST8@h;%A=A-bBtQpq&=H?-Z>$qKBxl;cb{Y^joI z)g(rap3(PN7YQ<-3&&Fl{CA^NcQ0L<-uv5OU!|@8UF=f@T(l{QD1O2s z=7put>v`HOUzLnf{XXS-9TvtWe*v|)o7KVxu~J)o`B)|^O8auo`_U^N3yLw}HHo4- zKfD=3$IMehs{MT3np@7xcix2wDs`p=!<-gpyc(}#ckMgm(o|_r7t1{^T)8wl(f{N* zT};(R`IJQY&59_QP&57xnpi&a>XQ{^36E-h-ie3=3g6M2rVfCTi;I~CU>#W#oy>oR z^&_21lgj$?=u&5DXrT#{p^Wm+tjnAXvE#4VD52WM-m%^0KgE+=fwJZVGxta-)cpV6 zFK{R`Vl9Rli{u@@?*%JU6~1|y7?;7LXp?8+r;AX|1FZJq(FrtrLZhv1$&{B-B`u<( zCY@I{1Vp|%W8^TIq^P;>o0`fJ^a>OvV2>}ljUQV2pAl~9RB00@jBH)*G@5rxc+wlO zxv3>nvpXNC8QHyb&m3$yN8`REA9*e16AR6s`T3=ByeA@|4ugWa@BXW$b!iq4N$PKh z%*IKh&Iy%~)ui-3ea$qOqt^1sCBpLwc6MxFyhsKhA%#6e^Qe(+>+>|xmv6K`F@K>IJiki99qQL z)lev_mVGfqG9Qn8Ubn$wVWY^oiJlC+VrYGd3hG@vZjV%^HA3Yd50775cJsqwFu~S} z?F;LVh2T&(R~+tZUZU)iUo;#Ei-%_`P8G2LHqWH$F zS;{NE#?Sc-5qBksZPZ4wJ4ziVGv*a!eOvg~aeOMDKKIRCb*8n;f&~N9l=+eVY{DG| zev1drJ~B^he5{^GE(^GcC)Fe@x{I({@H7V*#NfK;nq%5no*vi#siWi1j;^#{WS)a( z?q)F&JD^gDUFJ(-lbTFkdh`oLK);@zyMt}Tc|S;Z9*$J3jem>o~Q8J;z|SMJA8k^q`Z*_XBy7pFbnTol?8 z9ezdm+x$5r2(grtG0%mQ5&?GgrLHM&-Lb7 z{K{j}sjE|%X!}wS1m8{FE`mlKvZ75recP3qohTeR`2YsDW+lyE-wLz`xuz@^i=1T1 zRfQ^25=(5=1tzzpQak2o%$4u^O0pjWgeu<(!5{2q0)kq^h_quJa;*=jWD>sBio4Mp zh1E3!16Xk2(U&(#z79UNeFxKEWxVvwyX9gdz=RyoYAVs8dJf4SpOn~LUgizLY4fl@ zmnH-f^u10gUbb&8AMC^V-e%x#6Op_&vtxrzcP8>euRI|*p1BxtKlS`;c15V-yUq;Wiq|>*_nFE#ivfb4-{^w+c>VV8t!sk}n3&HpW3638K~}Yx zg>kYf=2SX3R0ruE2p)X2q#Z9qU+pu=2Rm~MK4}XCtS%U=DYg_9a}Y6DC7pV@wSef! z@IbD|1L5+r>zGkObmeVVHiy~LpW^)Oy^*_2O;P=91fTC^{?MPDaoyuTDwRuJOu=b+OeucGI6K@JAd(z0P>-z}XA*)j{6yZ^cWU;5$rf?}Ln^Q{2 zPWek@z!4Wvq2*$!;`-_am9Oe4luE+nPJOWZ_1MOZvMtuD!9o|LG@seu6-ozNR=AKJ zuknbp=Em-o&T?xL(|`$ok=PRP5{#EjGv zLR{>O!sjtFATI)}A)jtt;Iy3F#B>HaQ)o9=J5N>Un07AwUjGu@0$lTzyr6*jr03eo zFbu#sM(hDHnG~}+TgrIfp3U7K%&moxW8>AH2sXwif06n%kQZgG>KLzrA%cpT?d;~& z*poNErw`js!Tlsek%I>%1n)Gu>@W6m_Sd#UDNq;(uPQGTyW_Z!XxHz!X&4ihhT0=- zj($IdHnRq>?Sn0zCf{MFg>-9JhyG}LSt`dWtv{aOaMWd|zS1s>MmI#9qUJQzLW6$O z>gW&db$q!93VxAkOURJB;NCoP)PIsnUIhr@q7d+iz5h-fT9bKnwklIkNeMfPE)v85 zsoKZ#GQ@3T3o>Oz(-Ku$sX8XODMc{B6~P_LWYQZ5OPsGVg*Hr^4o%^&M&-o*3$^hQ z$Kj5XCOWqcR4hY(b>b2AYOX^`b9-eOM&TL1xab1i4o4%Pw1nItbVNakm^CeAz~sx3f$efM!V zGEWzI(;v%5yF-_IWtVA?Us$@yhbm(@iUTD6%^a04^b!dbHG)4CUTwNpu%O0M!x-@j z0FI!(v0Y2tOgvqfC8AsOAJS}Fwsa0Hjz%`FY~sW2802f;WSMm8*Hj(I#Z{3s{RzJw z{aK(hc<`nzBHrm&7cForUJ%SZ?%c?@Hj>ok*1=Pl4(9Zu)Z4%VB{?F%v;tiMs1(F5 zEs~nEV209ayP=~Dze_67V3x+GAOURVfYKX}GL3~JFm>`*GMM`2gM48l>X5M`VVJDv z%JVydQ47?e+@^&{-zeU-PvmkblTfzAF`bdQ;3SOpDEef_=;EJAassA7fZ)Z}c9DqN z3gkLXorSYlo^@oA#&*G?;6u5(BOZcJ63f!6LzAI>@a|ySamBCW8RlK2w~8a%X%m<85Ub(A>s^@`=eqApe|-6?N&)NDQSFtw?acZ#q8p| Wz=F-hhW&3#hEb9O%GOGo1^*9>zm&iL literal 0 HcmV?d00001 diff --git a/static/images/title1.png b/static/images/title1.png new file mode 100644 index 0000000000000000000000000000000000000000..1b01a9c7191e3504d283a38dd5999231c2b0e351 GIT binary patch literal 2238 zcma)+`9GBF8^=|gj*3&Vjio~6bnHViWlOdWMp;q`$uf~8WIZQjUnYqxC4^M=X0mUC z7|U2fDIsM7F&L}Zh>wki7qy1 z)spUEl)yO9sJ3!zYpvcK&x!(XlxsLwuh8pr*@2?N@Ry4`P=MNu&J&4^5H1qrvHhhQS=-5+L$8W;!4$7Qx=7utz8(8%aOXyGFaU$%*EQ4#D8L3{rE= z4>@uGSp{T?`E3+}MAr(AGw4zR`Bq5HNi!ZOloIP_g8?;ODm;Vbfhs-FpcThVx=OD_ zHM5Y|YP}PY!Hwlg*RpuY91!LY8jpuCaw<43)=&rXG`Q>SO0O!0Zvu)MXw(E@x22j` z(^fnvh%3>m|1>g!UDB z-HO*Hq76a!&3=3F`qqNe76NeHe-q*Cy-^a*$c$m8AhRol-M?JmeYM$M_1R>EaW{gw z65Z^Ftcb_#z-o@;j1_Ong2#&BvhQ*al{0-eo@KE^^4Wge7!Dl8!9tzMtQe4f1rZEh z$o}-)+D_t#QDBL;Y}qQNJ=Em6@e*MI;@n@tZb;*x;TU2G@jkYA4_l^&mB36u`b9V( zBLKx_Hc;CQdSxo>9(ZL0-YS7yao`mNd?S7hf~YWmb^AUmGL3aNn|%lI2`G~OY|e{k zCISKmR2-gn+;XRvfj$*bEr<9mgB1?yv_b2iAWw1`w*@@zab2<|O?e8PG?iYe%J7`g zkD+<%X~PfiR9oiftiC~)Yd;!q)4VrjNp$P?oy(U<14{RUNEcVIG59!WRRrnnzpPA>^`w@5 znP7)cX)w*ei$mDEV+Ye|TqGJpS34d2(_M~gC9!kZTDMR`X-96pR-5OrD7v8bTHoa# z@J#^+0jRRoQNQACP$gZbg(I?FY<2zmSIbyTLD(Jgk+j`S*V;=dk;4YMI4EOtuf%uA zP9(QvxHQGR@51xvE=E1JFMdZYFJ8`v@OwOxty!wl+Nw_V&N)zXUE9olBI>V6--!~H z7Hxx1vv*|5!uiWIg+T;@lps~ zP#@UI$bXm}5J1ov9VIb>27PV(9v1((Qn#!#W1~C=5HN60|pE& zhc@_yA51lQtxOer_z^df7pm(s+de{=!|3-;2@&t+>#g9U@Qwc-lcVBPl1xTNj=RecF#6QVr2s>$u(rMb9#r86+|%z- z=z^+#ovRU{gZAX_Z%`DtMT>gqXeKrXvh^izn2O{+b*jpn!_Oq2eRz|s!EK?!c&B8A zst0}O$f6;*M2k9oH1ix{b2`IF@*T0m1;tZnwC9ZUV!fPre0(~T{c7Ff3BJbde&#)^*zyTy z;Ya-S=dc#&dc2^Jkl5+$!2s;xxm04bt{Yj&*{!9!eLO89Jzc}u&?X}`-jzHa6=h#$ zS5!pAtWsuY4IZgZ;@!8FC^Q&q)+^tB9AHE+t2IxviV+4=R4md}E(}6_xe3e($cPW_59h>Em?7 zrEnlC9$!^iN!JPt3E8MsR1ftaS}ZnVNC$Q`5XA@m)O&~Ywgfx&adN!u)&0M;3OI(t l>%sQ>{>z_-k8iz@w^M&X>s*k0^!%@k^Cnp1YNP8h{{yapz{vmr literal 0 HcmV?d00001 diff --git a/store/index.js b/store/index.js index c502249..c42c3d3 100644 --- a/store/index.js +++ b/store/index.js @@ -100,7 +100,11 @@ const vuexStore = new Vuex.Store({ reslove(res.data); }); }).catch(() => { - dialog.error("获取信息失败!"); + uni.showToast({ + title: "获取信息失败!", + icon: "none", + duration: 2000, + }); }); } }, @@ -113,7 +117,11 @@ const vuexStore = new Vuex.Store({ }); }).catch((error) => { console.log(error) - dialog.error("获取信息失败!"); + uni.showToast({ + title: "获取信息失败!", + icon: "none", + duration: 2000, + }); }); }, changeLogin({ diff --git a/uni.css b/uni.css new file mode 100644 index 0000000..46acb08 --- /dev/null +++ b/uni.css @@ -0,0 +1,510 @@ +@charset "UTF-8"; +/** + * 这里是uni-app内置的常用样式变量 + * + * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 + * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App + * + */ +/** + * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 + * + * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 + */ +/* 颜色变量 */ +/* 行为相关颜色 */ +/* 文字基本颜色 */ +/* 背景颜色 */ +/* 边框颜色 */ +/* 尺寸变量 */ +/* 文字尺寸 */ +/* 图片尺寸 */ +/* Border Radius */ +/* 水平间距 */ +/* 垂直间距 */ +/* 透明度 */ +/* 文章场景相关 */ +/* ================== + 自定义变量 + ==================== */ +/*盒子模型*/ +.mt2 { + margin-top: 2rpx; +} + +.mr2 { + margin-right: 2rpx; +} + +.mb2 { + margin-bottom: 2rpx; +} + +.ml2 { + margin-left: 2rpx; +} + +.mx2 { + margin-left: 2rpx; + margin-right: 2rpx; +} + +.my2 { + margin-top: 2rpx; + margin-bottom: 2rpx; +} + +.ma2 { + margin: 2rpx; +} + +.mt4 { + margin-top: 4rpx; +} + +.mr4 { + margin-right: 4rpx; +} + +.mb4 { + margin-bottom: 4rpx; +} + +.ml4 { + margin-left: 4rpx; +} + +.mx4 { + margin-left: 4rpx; + margin-right: 4rpx; +} + +.my4 { + margin-top: 4rpx; + margin-bottom: 4rpx; +} + +.ma4 { + margin: 4rpx; +} + +.mt8 { + margin-top: 8rpx; +} + +.mr8 { + margin-right: 8rpx; +} + +.mb8 { + margin-bottom: 8rpx; +} + +.ml8 { + margin-left: 8rpx; +} + +.mx8 { + margin-left: 8rpx; + margin-right: 8rpx; +} + +.my8 { + margin-top: 8rpx; + margin-bottom: 8rpx; +} + +.ma8 { + margin: 8rpx; +} + +.mt10 { + margin-top: 10rpx; +} + +.mr10 { + margin-right: 10rpx; +} + +.mb10 { + margin-bottom: 10rpx; +} + +.ml10 { + margin-left: 10rpx; +} + +.mx10 { + margin-left: 10rpx; + margin-right: 10rpx; +} + +.my10 { + margin-top: 10rpx; + margin-bottom: 10rpx; +} + +.ma10 { + margin: 10rpx; +} + +.mt15 { + margin-top: 15rpx; +} + +.mr15 { + margin-right: 15rpx; +} + +.mb15 { + margin-bottom: 15rpx; +} + +.ml15 { + margin-left: 15rpx; +} + +.mx15 { + margin-left: 15rpx; + margin-right: 15rpx; +} + +.my15 { + margin-top: 15rpx; + margin-bottom: 15rpx; +} + +.ma15 { + margin: 15rpx; +} + +.mt20 { + margin-top: 20rpx; +} + +.mr20 { + margin-right: 20rpx; +} + +.mb20 { + margin-bottom: 20rpx; +} + +.ml20 { + margin-left: 20rpx; +} + +.mx20 { + margin-left: 20rpx; + margin-right: 20rpx; +} + +.my20 { + margin-top: 20rpx; + margin-bottom: 20rpx; +} + +.ma20 { + margin: 20rpx; +} + +.mt24 { + margin-top: 24rpx; +} + +.mr24 { + margin-right: 24rpx; +} + +.mb24 { + margin-bottom: 24rpx; +} + +.ml24 { + margin-left: 24rpx; +} + +.mx24 { + margin-left: 24rpx; + margin-right: 24rpx; +} + +.my24 { + margin-top: 24rpx; + margin-bottom: 24rpx; +} + +.ma24 { + margin: 24rpx; +} + +.mt30 { + margin-top: 30rpx; +} + +.mr30 { + margin-right: 30rpx; +} + +.mb30 { + margin-bottom: 30rpx; +} + +.ml30 { + margin-left: 30rpx; +} + +.mx30 { + margin-left: 30rpx; + margin-right: 30rpx; +} + +.my30 { + margin-top: 30rpx; + margin-bottom: 30rpx; +} + +.ma30 { + margin: 30rpx; +} + +.pt2 { + padding-top: 2rpx; +} + +.pr2 { + padding-right: 2rpx; +} + +.pb2 { + padding-bottom: 2rpx; +} + +.pl2 { + padding-left: 2rpx; +} + +.px2 { + padding-left: 2rpx; + padding-right: 2rpx; +} + +.py2 { + padding-top: 2rpx; + padding-bottom: 2rpx; +} + +.pa2 { + padding: 2rpx; +} + +.pt4 { + padding-top: 4rpx; +} + +.pr4 { + padding-right: 4rpx; +} + +.pb4 { + padding-bottom: 4rpx; +} + +.pl4 { + padding-left: 4rpx; +} + +.px4 { + padding-left: 4rpx; + padding-right: 4rpx; +} + +.py4 { + padding-top: 4rpx; + padding-bottom: 4rpx; +} + +.pa4 { + padding: 4rpx; +} + +.pt8 { + padding-top: 8rpx; +} + +.pr8 { + padding-right: 8rpx; +} + +.pb8 { + padding-bottom: 8rpx; +} + +.pl8 { + padding-left: 8rpx; +} + +.px8 { + padding-left: 8rpx; + padding-right: 8rpx; +} + +.py8 { + padding-top: 8rpx; + padding-bottom: 8rpx; +} + +.pa8 { + padding: 8rpx; +} + +.pt10 { + padding-top: 10rpx; +} + +.pr10 { + padding-right: 10rpx; +} + +.pb10 { + padding-bottom: 10rpx; +} + +.pl10 { + padding-left: 10rpx; +} + +.px10 { + padding-left: 10rpx; + padding-right: 10rpx; +} + +.py10 { + padding-top: 10rpx; + padding-bottom: 10rpx; +} + +.pa10 { + padding: 10rpx; +} + +.pt15 { + padding-top: 15rpx; +} + +.pr15 { + padding-right: 15rpx; +} + +.pb15 { + padding-bottom: 15rpx; +} + +.pl15 { + padding-left: 15rpx; +} + +.px15 { + padding-left: 15rpx; + padding-right: 15rpx; +} + +.py15 { + padding-top: 15rpx; + padding-bottom: 15rpx; +} + +.pa15 { + padding: 15rpx; +} + +.pt20 { + padding-top: 20rpx; +} + +.pr20 { + padding-right: 20rpx; +} + +.pb20 { + padding-bottom: 20rpx; +} + +.pl20 { + padding-left: 20rpx; +} + +.px20 { + padding-left: 20rpx; + padding-right: 20rpx; +} + +.py20 { + padding-top: 20rpx; + padding-bottom: 20rpx; +} + +.pa20 { + padding: 20rpx; +} + +.pt24 { + padding-top: 24rpx; +} + +.pr24 { + padding-right: 24rpx; +} + +.pb24 { + padding-bottom: 24rpx; +} + +.pl24 { + padding-left: 24rpx; +} + +.px24 { + padding-left: 24rpx; + padding-right: 24rpx; +} + +.py24 { + padding-top: 24rpx; + padding-bottom: 24rpx; +} + +.pa24 { + padding: 24rpx; +} + +.pt30 { + padding-top: 30rpx; +} + +.pr30 { + padding-right: 30rpx; +} + +.pb30 { + padding-bottom: 30rpx; +} + +.pl30 { + padding-left: 30rpx; +} + +.px30 { + padding-left: 30rpx; + padding-right: 30rpx; +} + +.py30 { + padding-top: 30rpx; + padding-bottom: 30rpx; +} + +.pa30 { + padding: 30rpx; +} +/*# sourceMappingURL=uni.css.map */ \ No newline at end of file diff --git a/uni.css.map b/uni.css.map new file mode 100644 index 0000000..0c06e82 --- /dev/null +++ b/uni.css.map @@ -0,0 +1,9 @@ +{ + "version": 3, + "mappings": ";AAAA;;;;;;GAMG;AAEH;;;;GAIG;AAEH,cAAc;AAEd,kBAAkB;AAMlB,kBAAkB;AAOlB,cAAc;AAMd,cAAc;AAGd,cAAc;AAEd,cAAc;AAKd,cAAc;AAKd,mBAAmB;AAMnB,cAAc;AAKd,cAAc;AAKd,YAAY;AAGZ,kBAAkB;AAUlB;;wBAEwB;AAuBxB,YAAY;AAKT,AAAA,IAAI,CAAoC;EACvC,UAAsB,EAjBtB,IAAI;CAkBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,YAAsB,EAjBtB,IAAI;CAkBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,aAAsB,EAjBtB,IAAI;CAkBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,WAAsB,EAjBtB,IAAI;CAkBJ;;AAIF,AAAA,IAAI,CAAqB;EACxB,WAAa,EAvBZ,IAAI;EAwBL,YAAc,EAxBb,IAAI;CAyBL;;AACD,AAAA,IAAI,CAAqB;EACxB,UAAY,EA3BX,IAAI;EA4BL,aAAe,EA5Bd,IAAI;CA6BL;;AAGD,AAAA,IAAI,CAAqB;EACxB,MAAQ,EAjCP,IAAI;CAkCL;;AAlBA,AAAA,IAAI,CAAoC;EACvC,UAAsB,EAhBtB,IAAI;CAiBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,YAAsB,EAhBtB,IAAI;CAiBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,aAAsB,EAhBtB,IAAI;CAiBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,WAAsB,EAhBtB,IAAI;CAiBJ;;AAIF,AAAA,IAAI,CAAqB;EACxB,WAAa,EAtBZ,IAAI;EAuBL,YAAc,EAvBb,IAAI;CAwBL;;AACD,AAAA,IAAI,CAAqB;EACxB,UAAY,EA1BX,IAAI;EA2BL,aAAe,EA3Bd,IAAI;CA4BL;;AAGD,AAAA,IAAI,CAAqB;EACxB,MAAQ,EAhCP,IAAI;CAiCL;;AAlBA,AAAA,IAAI,CAAoC;EACvC,UAAsB,EAftB,IAAI;CAgBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,YAAsB,EAftB,IAAI;CAgBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,aAAsB,EAftB,IAAI;CAgBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,WAAsB,EAftB,IAAI;CAgBJ;;AAIF,AAAA,IAAI,CAAqB;EACxB,WAAa,EArBZ,IAAI;EAsBL,YAAc,EAtBb,IAAI;CAuBL;;AACD,AAAA,IAAI,CAAqB;EACxB,UAAY,EAzBX,IAAI;EA0BL,aAAe,EA1Bd,IAAI;CA2BL;;AAGD,AAAA,IAAI,CAAqB;EACxB,MAAQ,EA/BP,IAAI;CAgCL;;AAlBA,AAAA,KAAK,CAAmC;EACvC,UAAsB,EAdrB,KAAK;CAeN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAdrB,KAAK;CAeN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAdrB,KAAK;CAeN;;AAFD,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAdrB,KAAK;CAeN;;AAIF,AAAA,KAAK,CAAoB;EACxB,WAAa,EApBX,KAAK;EAqBP,YAAc,EArBZ,KAAK;CAsBP;;AACD,AAAA,KAAK,CAAoB;EACxB,UAAY,EAxBV,KAAK;EAyBP,aAAe,EAzBb,KAAK;CA0BP;;AAGD,AAAA,KAAK,CAAoB;EACxB,MAAQ,EA9BN,KAAK;CA+BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,UAAsB,EAbrB,KAAK;CAcN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAbrB,KAAK;CAcN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAbrB,KAAK;CAcN;;AAFD,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAbrB,KAAK;CAcN;;AAIF,AAAA,KAAK,CAAoB;EACxB,WAAa,EAnBX,KAAK;EAoBP,YAAc,EApBZ,KAAK;CAqBP;;AACD,AAAA,KAAK,CAAoB;EACxB,UAAY,EAvBV,KAAK;EAwBP,aAAe,EAxBb,KAAK;CAyBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,MAAQ,EA7BN,KAAK;CA8BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,UAAsB,EAZrB,KAAK;CAaN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAZrB,KAAK;CAaN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAZrB,KAAK;CAaN;;AAFD,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAZrB,KAAK;CAaN;;AAIF,AAAA,KAAK,CAAoB;EACxB,WAAa,EAlBX,KAAK;EAmBP,YAAc,EAnBZ,KAAK;CAoBP;;AACD,AAAA,KAAK,CAAoB;EACxB,UAAY,EAtBV,KAAK;EAuBP,aAAe,EAvBb,KAAK;CAwBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,MAAQ,EA5BN,KAAK;CA6BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,UAAsB,EAXrB,KAAK;CAYN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAXrB,KAAK;CAYN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAXrB,KAAK;CAYN;;AAFD,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAXrB,KAAK;CAYN;;AAIF,AAAA,KAAK,CAAoB;EACxB,WAAa,EAjBX,KAAK;EAkBP,YAAc,EAlBZ,KAAK;CAmBP;;AACD,AAAA,KAAK,CAAoB;EACxB,UAAY,EArBV,KAAK;EAsBP,aAAe,EAtBb,KAAK;CAuBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,MAAQ,EA3BN,KAAK;CA4BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,UAAsB,EAVrB,KAAK;CAWN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAVrB,KAAK;CAWN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAVrB,KAAK;CAWN;;AAFD,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAVrB,KAAK;CAWN;;AAIF,AAAA,KAAK,CAAoB;EACxB,WAAa,EAhBX,KAAK;EAiBP,YAAc,EAjBZ,KAAK;CAkBP;;AACD,AAAA,KAAK,CAAoB;EACxB,UAAY,EApBV,KAAK;EAqBP,aAAe,EArBb,KAAK;CAsBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,MAAQ,EA1BN,KAAK;CA2BP;;AAlBA,AAAA,IAAI,CAAoC;EACvC,WAAsB,EAjBtB,IAAI;CAkBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,aAAsB,EAjBtB,IAAI;CAkBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,cAAsB,EAjBtB,IAAI;CAkBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,YAAsB,EAjBtB,IAAI;CAkBJ;;AAIF,AAAA,IAAI,CAAqB;EACxB,YAAa,EAvBZ,IAAI;EAwBL,aAAc,EAxBb,IAAI;CAyBL;;AACD,AAAA,IAAI,CAAqB;EACxB,WAAY,EA3BX,IAAI;EA4BL,cAAe,EA5Bd,IAAI;CA6BL;;AAGD,AAAA,IAAI,CAAqB;EACxB,OAAQ,EAjCP,IAAI;CAkCL;;AAlBA,AAAA,IAAI,CAAoC;EACvC,WAAsB,EAhBtB,IAAI;CAiBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,aAAsB,EAhBtB,IAAI;CAiBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,cAAsB,EAhBtB,IAAI;CAiBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,YAAsB,EAhBtB,IAAI;CAiBJ;;AAIF,AAAA,IAAI,CAAqB;EACxB,YAAa,EAtBZ,IAAI;EAuBL,aAAc,EAvBb,IAAI;CAwBL;;AACD,AAAA,IAAI,CAAqB;EACxB,WAAY,EA1BX,IAAI;EA2BL,cAAe,EA3Bd,IAAI;CA4BL;;AAGD,AAAA,IAAI,CAAqB;EACxB,OAAQ,EAhCP,IAAI;CAiCL;;AAlBA,AAAA,IAAI,CAAoC;EACvC,WAAsB,EAftB,IAAI;CAgBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,aAAsB,EAftB,IAAI;CAgBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,cAAsB,EAftB,IAAI;CAgBJ;;AAFD,AAAA,IAAI,CAAoC;EACvC,YAAsB,EAftB,IAAI;CAgBJ;;AAIF,AAAA,IAAI,CAAqB;EACxB,YAAa,EArBZ,IAAI;EAsBL,aAAc,EAtBb,IAAI;CAuBL;;AACD,AAAA,IAAI,CAAqB;EACxB,WAAY,EAzBX,IAAI;EA0BL,cAAe,EA1Bd,IAAI;CA2BL;;AAGD,AAAA,IAAI,CAAqB;EACxB,OAAQ,EA/BP,IAAI;CAgCL;;AAlBA,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAdrB,KAAK;CAeN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAdrB,KAAK;CAeN;;AAFD,AAAA,KAAK,CAAmC;EACvC,cAAsB,EAdrB,KAAK;CAeN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAdrB,KAAK;CAeN;;AAIF,AAAA,KAAK,CAAoB;EACxB,YAAa,EApBX,KAAK;EAqBP,aAAc,EArBZ,KAAK;CAsBP;;AACD,AAAA,KAAK,CAAoB;EACxB,WAAY,EAxBV,KAAK;EAyBP,cAAe,EAzBb,KAAK;CA0BP;;AAGD,AAAA,KAAK,CAAoB;EACxB,OAAQ,EA9BN,KAAK;CA+BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAbrB,KAAK;CAcN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAbrB,KAAK;CAcN;;AAFD,AAAA,KAAK,CAAmC;EACvC,cAAsB,EAbrB,KAAK;CAcN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAbrB,KAAK;CAcN;;AAIF,AAAA,KAAK,CAAoB;EACxB,YAAa,EAnBX,KAAK;EAoBP,aAAc,EApBZ,KAAK;CAqBP;;AACD,AAAA,KAAK,CAAoB;EACxB,WAAY,EAvBV,KAAK;EAwBP,cAAe,EAxBb,KAAK;CAyBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,OAAQ,EA7BN,KAAK;CA8BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAZrB,KAAK;CAaN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAZrB,KAAK;CAaN;;AAFD,AAAA,KAAK,CAAmC;EACvC,cAAsB,EAZrB,KAAK;CAaN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAZrB,KAAK;CAaN;;AAIF,AAAA,KAAK,CAAoB;EACxB,YAAa,EAlBX,KAAK;EAmBP,aAAc,EAnBZ,KAAK;CAoBP;;AACD,AAAA,KAAK,CAAoB;EACxB,WAAY,EAtBV,KAAK;EAuBP,cAAe,EAvBb,KAAK;CAwBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,OAAQ,EA5BN,KAAK;CA6BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAXrB,KAAK;CAYN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAXrB,KAAK;CAYN;;AAFD,AAAA,KAAK,CAAmC;EACvC,cAAsB,EAXrB,KAAK;CAYN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAXrB,KAAK;CAYN;;AAIF,AAAA,KAAK,CAAoB;EACxB,YAAa,EAjBX,KAAK;EAkBP,aAAc,EAlBZ,KAAK;CAmBP;;AACD,AAAA,KAAK,CAAoB;EACxB,WAAY,EArBV,KAAK;EAsBP,cAAe,EAtBb,KAAK;CAuBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,OAAQ,EA3BN,KAAK;CA4BP;;AAlBA,AAAA,KAAK,CAAmC;EACvC,WAAsB,EAVrB,KAAK;CAWN;;AAFD,AAAA,KAAK,CAAmC;EACvC,aAAsB,EAVrB,KAAK;CAWN;;AAFD,AAAA,KAAK,CAAmC;EACvC,cAAsB,EAVrB,KAAK;CAWN;;AAFD,AAAA,KAAK,CAAmC;EACvC,YAAsB,EAVrB,KAAK;CAWN;;AAIF,AAAA,KAAK,CAAoB;EACxB,YAAa,EAhBX,KAAK;EAiBP,aAAc,EAjBZ,KAAK;CAkBP;;AACD,AAAA,KAAK,CAAoB;EACxB,WAAY,EApBV,KAAK;EAqBP,cAAe,EArBb,KAAK;CAsBP;;AAGD,AAAA,KAAK,CAAoB;EACxB,OAAQ,EA1BN,KAAK;CA2BP", + "sources": [ + "uni.scss" + ], + "names": [], + "file": "uni.css" +} \ No newline at end of file diff --git a/uni.min.css b/uni.min.css new file mode 100644 index 0000000..7dc8e7f --- /dev/null +++ b/uni.min.css @@ -0,0 +1 @@ +.mt2{margin-top:2rpx}.mr2{margin-right:2rpx}.mb2{margin-bottom:2rpx}.ml2{margin-left:2rpx}.mx2{margin-left:2rpx;margin-right:2rpx}.my2{margin-top:2rpx;margin-bottom:2rpx}.ma2{margin:2rpx}.mt4{margin-top:4rpx}.mr4{margin-right:4rpx}.mb4{margin-bottom:4rpx}.ml4{margin-left:4rpx}.mx4{margin-left:4rpx;margin-right:4rpx}.my4{margin-top:4rpx;margin-bottom:4rpx}.ma4{margin:4rpx}.mt8{margin-top:8rpx}.mr8{margin-right:8rpx}.mb8{margin-bottom:8rpx}.ml8{margin-left:8rpx}.mx8{margin-left:8rpx;margin-right:8rpx}.my8{margin-top:8rpx;margin-bottom:8rpx}.ma8{margin:8rpx}.mt10{margin-top:10rpx}.mr10{margin-right:10rpx}.mb10{margin-bottom:10rpx}.ml10{margin-left:10rpx}.mx10{margin-left:10rpx;margin-right:10rpx}.my10{margin-top:10rpx;margin-bottom:10rpx}.ma10{margin:10rpx}.mt15{margin-top:15rpx}.mr15{margin-right:15rpx}.mb15{margin-bottom:15rpx}.ml15{margin-left:15rpx}.mx15{margin-left:15rpx;margin-right:15rpx}.my15{margin-top:15rpx;margin-bottom:15rpx}.ma15{margin:15rpx}.mt20{margin-top:20rpx}.mr20{margin-right:20rpx}.mb20{margin-bottom:20rpx}.ml20{margin-left:20rpx}.mx20{margin-left:20rpx;margin-right:20rpx}.my20{margin-top:20rpx;margin-bottom:20rpx}.ma20{margin:20rpx}.mt24{margin-top:24rpx}.mr24{margin-right:24rpx}.mb24{margin-bottom:24rpx}.ml24{margin-left:24rpx}.mx24{margin-left:24rpx;margin-right:24rpx}.my24{margin-top:24rpx;margin-bottom:24rpx}.ma24{margin:24rpx}.mt30{margin-top:30rpx}.mr30{margin-right:30rpx}.mb30{margin-bottom:30rpx}.ml30{margin-left:30rpx}.mx30{margin-left:30rpx;margin-right:30rpx}.my30{margin-top:30rpx;margin-bottom:30rpx}.ma30{margin:30rpx}.pt2{padding-top:2rpx}.pr2{padding-right:2rpx}.pb2{padding-bottom:2rpx}.pl2{padding-left:2rpx}.px2{padding-left:2rpx;padding-right:2rpx}.py2{padding-top:2rpx;padding-bottom:2rpx}.pa2{padding:2rpx}.pt4{padding-top:4rpx}.pr4{padding-right:4rpx}.pb4{padding-bottom:4rpx}.pl4{padding-left:4rpx}.px4{padding-left:4rpx;padding-right:4rpx}.py4{padding-top:4rpx;padding-bottom:4rpx}.pa4{padding:4rpx}.pt8{padding-top:8rpx}.pr8{padding-right:8rpx}.pb8{padding-bottom:8rpx}.pl8{padding-left:8rpx}.px8{padding-left:8rpx;padding-right:8rpx}.py8{padding-top:8rpx;padding-bottom:8rpx}.pa8{padding:8rpx}.pt10{padding-top:10rpx}.pr10{padding-right:10rpx}.pb10{padding-bottom:10rpx}.pl10{padding-left:10rpx}.px10{padding-left:10rpx;padding-right:10rpx}.py10{padding-top:10rpx;padding-bottom:10rpx}.pa10{padding:10rpx}.pt15{padding-top:15rpx}.pr15{padding-right:15rpx}.pb15{padding-bottom:15rpx}.pl15{padding-left:15rpx}.px15{padding-left:15rpx;padding-right:15rpx}.py15{padding-top:15rpx;padding-bottom:15rpx}.pa15{padding:15rpx}.pt20{padding-top:20rpx}.pr20{padding-right:20rpx}.pb20{padding-bottom:20rpx}.pl20{padding-left:20rpx}.px20{padding-left:20rpx;padding-right:20rpx}.py20{padding-top:20rpx;padding-bottom:20rpx}.pa20{padding:20rpx}.pt24{padding-top:24rpx}.pr24{padding-right:24rpx}.pb24{padding-bottom:24rpx}.pl24{padding-left:24rpx}.px24{padding-left:24rpx;padding-right:24rpx}.py24{padding-top:24rpx;padding-bottom:24rpx}.pa24{padding:24rpx}.pt30{padding-top:30rpx}.pr30{padding-right:30rpx}.pb30{padding-bottom:30rpx}.pl30{padding-left:30rpx}.px30{padding-left:30rpx;padding-right:30rpx}.py30{padding-top:30rpx;padding-bottom:30rpx}.pa30{padding:30rpx} diff --git a/uni.scss b/uni.scss index 0b7deda..a79e2f6 100644 --- a/uni.scss +++ b/uni.scss @@ -73,4 +73,58 @@ $uni-font-size-title:40upx; $uni-color-subtitle: #555555; // 二级标题颜色 $uni-font-size-subtitle:36upx; $uni-color-paragraph: #3F536E; // 文章段落颜色 -$uni-font-size-paragraph:30upx; \ No newline at end of file +$uni-font-size-paragraph:30upx; + + + +/* ================== + 自定义变量 + ==================== */ + $spaceTypes: ( + m: margin, + p: padding +); +$spaceDirections: ( + t: top, + r: right, + b: bottom, + l: left +); +$spaceSizes: ( + 2: 2rpx, + 4: 4rpx, + 8: 8rpx, + 10: 10rpx, + 15: 15rpx, + 20: 20rpx, + 24: 24rpx, + 30: 30rpx +); + + +/*盒子模型*/ +@each $typeKey, $type in $spaceTypes { + @each $sizeKey, $size in $spaceSizes { + // margin-top:10rpx + @each $directionKey, $direction in $spaceDirections { + .#{$typeKey}#{$directionKey}#{$sizeKey} { + #{$type}-#{$direction}: $size; + } + } + + // margin: 10rpx 0; + .#{$typeKey}x#{$sizeKey} { + #{$type}-left: $size; + #{$type}-right: $size; + } + .#{$typeKey}y#{$sizeKey} { + #{$type}-top: $size; + #{$type}-bottom: $size; + } + + // margin: 10rpx ; + .#{$typeKey}a#{$sizeKey} { + #{$type}: $size; + } + } +} diff --git a/utils/index.js b/utils/index.js index b8de4a1..d8e91a3 100644 --- a/utils/index.js +++ b/utils/index.js @@ -38,7 +38,27 @@ export function dataFormat(time, option) { return timeStr } } - + // 年月日,时分秒 + // "YYYY-mm-dd HH:MM" +export function dateFormatL(fmt, date) { + let ret; + const opt = { + "Y+": date.getFullYear().toString(), // 年 + "m+": (date.getMonth() + 1).toString(), // 月 + "d+": date.getDate().toString(), // 日 + "H+": date.getHours().toString(), // 时 + "M+": date.getMinutes().toString(), // 分 + "S+": date.getSeconds().toString() // 秒 + // 有其他格式化字符需求可以继续添加,必须转化成字符串 + }; + for (let k in opt) { + ret = new RegExp("(" + k + ")").exec(fmt); + if (ret) { + fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, "0"))) + }; + }; + return fmt; + } export function dateFormatT(time) { time = +time * 1000; const d = new Date(time); @@ -62,7 +82,10 @@ export function isType(arg, type) { } export function isWeixin() { - return navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1; + if(navigator&&navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1){ + return true + } + return false } export function parseQuery() { @@ -182,13 +205,11 @@ export const login = () => { // } else { // // wechat().then(() => oAuth().then((code) => { // // // const { code } = parseQuery() - // // debugger // // auth(code) // // .then(() => { // // // location.replace( // // // decodeURIComponent(decodeURIComponent(this.$route.params.url)) // // // ); - // // debugger // // location.href = decodeURIComponent( // // decodeURIComponent(this.$route.params.url) // // ); @@ -250,6 +271,7 @@ export const login = () => { store.dispatch('userInfo', true) getUserInfo().then(user => { console.log('获取用户信息成功') + uni.setStorageSync('uid', user.data.uid); store.dispatch('setUserInfo', user.data) resolve(user) }).catch(error => { @@ -659,13 +681,14 @@ export function handleQrCode() { export function handleUrlParam(path) { console.log(path) - - var url = path.split("?")[1]; //获取url中"?"符后的字串 - console.log(url) var theRequest = new Object(); - let strs = url.split("&"); - for (var i = 0; i < strs.length; i++) { - theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]); + if(path.includes("?")){ + var url = path.split("?")[1]; //获取url中"?"符后的字串 + console.log(url) + let strs = url.split("&"); + for (var i = 0; i < strs.length; i++) { + theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]); + } } return theRequest; } @@ -700,8 +723,8 @@ const getImageInfo = (images) => { * @param string store_name 素材文字 * @param string price 价格 * @param function successFn 回调函数 - * - * + * + * */ export const PosterCanvas = (store, successCallBack) => { uni.showLoading({ @@ -796,16 +819,115 @@ export const handleLoginFailure = () => { console.log(store.getters) console.log('————————') store.commit("updateAuthorizationPage", true); - let path = '/' + getCurrentPageUrlWithArgs() + console.log("getCurrentPageUrl",getCurrentPageUrl()); + //判断小程序转发分享商品详情进来的 + if (getCurrentPageUrl() == 'pages/shop/GoodsCon/index' && handleUrlParam(path) ) { + debugger; + console.log('————————') + console.log('判断小程序转发分享商品详情进来的') + console.log(' handleUrlParam()', handleUrlParam(path)) + + let url = handleUrlParam(path); + console.log(url) + if (url) { + path = parseUrl({ + path: `/${getCurrentPageUrl()}`, + query: { + id: url.id, + } + }) + cookie.set("spread", url.spread || 0); + } else { + handleNoParameters() + console.log('————————') + console.log('是扫描的商品详情进来的,但是没有获取到参数') + console.log('————————') + } + } + + // 是分享转发拼团进来的 + if (getCurrentPageUrl() == 'pages/activity/GroupDetails/index' && handleUrlParam(path)) { + console.log('————————') + console.log('是分享转发拼团进来的') + console.log('————————') + + let url = handleUrlParam(path); + console.log(url) + if (url) { + path = parseUrl({ + path: `/${getCurrentPageUrl()}`, + query: { + id: url.id, + } + }) + cookie.set("spread", url.spread || 0); + } else { + console.log('————————') + console.log('是拼团进来的,但是没有获取到参数') + console.log('————————') + handleNoParameters() + } + } + + // 是分享转发秒杀进来的 + if (getCurrentPageUrl() == 'pages/activity/SeckillDetails/index' && handleUrlParam(path)) { + console.log('————————') + console.log('是分享转发秒杀进来的') + console.log('————————') + + let url = handleUrlParam(path); + console.log(url) + if (url) { + path = parseUrl({ + path: `/${getCurrentPageUrl()}`, + query: { + id: url.id, + } + }) + cookie.set("spread", url.spread || 0); + } else { + console.log('————————') + console.log('是秒杀进来的,但是没有获取到参数') + console.log('————————') + handleNoParameters() + } + } + // 判断是不是转发分享的砍价海报进来的 + if (getCurrentPageUrl() == 'pages/activity/DargainDetails/index' && handleUrlParam(path)) { + console.log('————————') + console.log('判断是不是转发分享的砍价海报进来的') + console.log('————————') + let url = handleUrlParam(path); + if (url) { + path = parseUrl({ + path: `/${getCurrentPageUrl()}`, + query: { + id: url.bargainId, + partake: url.uid + } + }) + cookie.set("spread", url.spread || 0); + } else { + handleNoParameters() + console.log('————————') + console.log('是扫描的砍价海报进来的,但是没有获取到参数') + console.log('————————') + + + } + } // 判断是不是拼团进来的 - if (getCurrentPageUrl() == 'pages/activity/GroupRule/index' && handleQrCode()) { + if (getCurrentPageUrl() == 'pages/activity/GroupRule/index' ) { console.log('————————') console.log('是拼团进来的') console.log('————————') let url = handleQrCode(); + if(!url){ + url = handleUrlParam(path); + } console.log(url) if (url) { path = parseUrl({ @@ -814,7 +936,7 @@ export const handleLoginFailure = () => { id: url.pinkId, } }) - // cookie.set("spread", url.spread || 0); + cookie.set("spread", url.spread || 0); } else { console.log('————————') console.log('是拼团进来的,但是没有获取到参数') @@ -837,7 +959,7 @@ export const handleLoginFailure = () => { partake: url.uid } }) - // cookie.set("spread", url.spread || 0); + cookie.set("spread", url.spread || 0); } else { handleNoParameters() console.log('————————') @@ -849,6 +971,7 @@ export const handleLoginFailure = () => { } if (getCurrentPageUrl() == 'pages/shop/GoodsCon/index' && handleQrCode()) { + debugger; console.log('————————') console.log('是扫描的商品详情') console.log('————————') diff --git a/utils/request.js b/utils/request.js index ecd017f..8e5e732 100644 --- a/utils/request.js +++ b/utils/request.js @@ -1,7 +1,13 @@ -// #ifndef MP-WEIXIN +// #ifdef H5 +// h5端 import Fly from "flyio/dist/npm/fly"; // #endif +// #ifdef APP-PLUS +// app端 +import Fly from "flyio/dist/npm/wx"; +// #endif + // #ifdef MP-WEIXIN import Fly from "flyio/dist/npm/wx"; // #endif