正在显示
24 个修改的文件
包含
4877 行增加
和
0 行删除
.project
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<projectDescription> | ||
3 | + <name>TakeFood</name> | ||
4 | + <comment></comment> | ||
5 | + <projects> | ||
6 | + </projects> | ||
7 | + <buildSpec> | ||
8 | + <buildCommand> | ||
9 | + <name>com.aptana.ide.core.unifiedBuilder</name> | ||
10 | + <arguments> | ||
11 | + </arguments> | ||
12 | + </buildCommand> | ||
13 | + </buildSpec> | ||
14 | + <natures> | ||
15 | + <nature>com.aptana.projects.webnature</nature> | ||
16 | + </natures> | ||
17 | + <filteredResources> | ||
18 | + <filter> | ||
19 | + <id>1525403963380</id> | ||
20 | + <name></name> | ||
21 | + <type>26</type> | ||
22 | + <matcher> | ||
23 | + <id>org.eclipse.ui.ide.multiFilter</id> | ||
24 | + <arguments>1.0-name-matches-false-false-node_modules</arguments> | ||
25 | + </matcher> | ||
26 | + </filter> | ||
27 | + <filter> | ||
28 | + <id>1532921264994</id> | ||
29 | + <name></name> | ||
30 | + <type>26</type> | ||
31 | + <matcher> | ||
32 | + <id>org.eclipse.ui.ide.multiFilter</id> | ||
33 | + <arguments>1.0-name-matches-false-false-node_modules</arguments> | ||
34 | + </matcher> | ||
35 | + </filter> | ||
36 | + <filter> | ||
37 | + <id>1533519359159</id> | ||
38 | + <name></name> | ||
39 | + <type>26</type> | ||
40 | + <matcher> | ||
41 | + <id>org.eclipse.ui.ide.multiFilter</id> | ||
42 | + <arguments>1.0-name-matches-false-false-node_modules</arguments> | ||
43 | + </matcher> | ||
44 | + </filter> | ||
45 | + </filteredResources> | ||
46 | +</projectDescription> |
PersonCenter/PersonCenter.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + | ||
4 | + <head> | ||
5 | + <meta charset="UTF-8"> | ||
6 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="../css/swiper-3.4.2.min.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="../css/init.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" /> | ||
10 | + <link rel="stylesheet" type="text/css" href="../css/PersonCenter/PersonCenter.css" /> | ||
11 | + <script src="../js/base.js" type="text/javascript" charset="utf-8"></script> | ||
12 | + <title>个人中心</title> | ||
13 | + <style> | ||
14 | + [ v-cloak]{ | ||
15 | + display:none; | ||
16 | + } | ||
17 | + </style> | ||
18 | + </head> | ||
19 | + | ||
20 | + <body> | ||
21 | + <div class="container" id="personcenter" v-cloak> | ||
22 | + <!--遮罩--> | ||
23 | + <div class="wrap"> | ||
24 | + <!--弹层--> | ||
25 | + <div class="popup"> | ||
26 | + <p>— 咨询热线 —</p> | ||
27 | + <span>1540098838</span> | ||
28 | + <div class="popup_footer"> | ||
29 | + 立即拨打 | ||
30 | + </div> | ||
31 | + </div> | ||
32 | + </div> | ||
33 | + | ||
34 | + <!--个人信息--> | ||
35 | + <div class="person"> | ||
36 | + <div class="person_info"> | ||
37 | + <!--<img src="../img/bpic03@2x.png" />--> | ||
38 | + <img :src="personinfo.head_img" /> | ||
39 | + <p class="person_name">{{personinfo.nickname}}</p> | ||
40 | + <!--<p class="person_name">微信名称</p>--> | ||
41 | + <span class="person_info_btn">全部订单</span> | ||
42 | + </div> | ||
43 | + </div> | ||
44 | + <!--待支付-制作中---> | ||
45 | + <div class="white"> | ||
46 | + <div class="white_item pend_pay" v-for="item in persontype" @click="jump(item)"> | ||
47 | + <i class="iconfont icon-wallet_icon"></i> | ||
48 | + <p>{{item.status}}</p> | ||
49 | + <span v-if="item.count>0" class="white_item_num">{{item.count}}</span> | ||
50 | + </div> | ||
51 | + <!--<div class="white_item pend_pay"> | ||
52 | + <i class="iconfont icon-wallet_icon"></i> | ||
53 | + <p>待支付</p> | ||
54 | + <span class="white_item_num">12</span> | ||
55 | + </div> | ||
56 | + <div class="white_item pend_make"> | ||
57 | + <i class="iconfont icon-hdxq_icon1"></i> | ||
58 | + <p>制作中</p> | ||
59 | + <span class="white_item_num">0</span> | ||
60 | + </div> | ||
61 | + <div class="white_item pend_take"> | ||
62 | + <i class="iconfont icon-yizhifu"></i> | ||
63 | + <p>待取货</p> | ||
64 | + <span class="white_item_num">0</span> | ||
65 | + </div> | ||
66 | + <div class="white_item pend_evaluate"> | ||
67 | + <i class="iconfont icon-31daipingjia"></i> | ||
68 | + <p>待评价</p> | ||
69 | + <span class="white_item_num">0</span> | ||
70 | + </div> | ||
71 | + <div class="white_item pend_finish"> | ||
72 | + <i class="iconfont icon-yiwancheng1"></i> | ||
73 | + <p>已完成</p> | ||
74 | + <span class="white_item_num">0</span> | ||
75 | + </div>--> | ||
76 | + </div> | ||
77 | + <!--我的钱包--> | ||
78 | + <div class="menu_list"> | ||
79 | + <div class="menu_item my_wallet"> | ||
80 | + <i class="iconfont icon-qianbao"></i> | ||
81 | + <p>我的钱包</p> | ||
82 | + <span>></span> | ||
83 | + </div> | ||
84 | + <div class="menu_item discount_page"> | ||
85 | + <i class="iconfont icon-youhuiquan"></i> | ||
86 | + <p>我的优惠券</p> | ||
87 | + <span>></span> | ||
88 | + </div> | ||
89 | + <div class="menu_item"> | ||
90 | + <i class="iconfont icon-liwu"></i> | ||
91 | + <p>分享有礼</p> | ||
92 | + <span>></span> | ||
93 | + </div> | ||
94 | + <div class="menu_item service"> | ||
95 | + <i class="iconfont icon-VectorSmartObject" style="color:#CDBEEC"></i> | ||
96 | + <p>联系客服</p> | ||
97 | + <span>></span> | ||
98 | + </div> | ||
99 | + <div class="menu_item aboutus" @click="aboutus()"> | ||
100 | + <i class="iconfont icon-erji" style="color:#CDBEEC"></i> | ||
101 | + <p>关于我们</p> | ||
102 | + <span>></span> | ||
103 | + </div> | ||
104 | + </div> | ||
105 | + <!--footer--> | ||
106 | + <div class="footer" v-cloak> | ||
107 | + <div class="footer_item"> | ||
108 | + <a href="../index.html"><img src="../img/menu_icon1_select@2x_81.png" /><span>首页</span></a> | ||
109 | + </div> | ||
110 | + <div class="footer_item"> | ||
111 | + <a href="../shopcar.html"><img src="../img/9拷贝@2x.png" /> | ||
112 | + <span>购物车</span> | ||
113 | + </a> | ||
114 | + <span class="foot_cartnum" v-if="cartnum>0">{{cartnum}}</span> | ||
115 | + </div> | ||
116 | + <div class="footer_item footer_active"> | ||
117 | + <a href=""><img src="../img/menu_icon3_select@2x_57.png" /><span>我的</span></a> | ||
118 | + </div> | ||
119 | + </div> | ||
120 | + </div> | ||
121 | + <script src="../js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
122 | + <script src="../js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
123 | + <script src="../js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
124 | + <script src="../js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
125 | + <script src="../js/personcenter.js" type="text/javascript" charset="utf-8"></script> | ||
126 | + <script type="text/javascript"> | ||
127 | + var service = document.getElementsByClassName('service')[0]; | ||
128 | + var wrap = document.getElementsByClassName('wrap')[0]; | ||
129 | + var popup = document.getElementsByClassName('popup')[0]; | ||
130 | + var popup_footer = document.getElementsByClassName('popup_footer')[0]; | ||
131 | + popup_footer.onclick = function(ev) { | ||
132 | + var oEvent = ev || event | ||
133 | + oEvent.concelable = true; | ||
134 | + oEvent.stopPropagation(); | ||
135 | + } | ||
136 | + service.onclick = function() { | ||
137 | + wrap.style.display = 'block'; | ||
138 | + } | ||
139 | + wrap.onclick = function() { | ||
140 | + wrap.style.display = 'none'; | ||
141 | + } | ||
142 | + var person_info_btn = document.getElementsByClassName('person_info_btn')[0]; | ||
143 | + person_info_btn.onclick = function() { | ||
144 | + window.location.href = '../myorder/myorder.html' | ||
145 | + } | ||
146 | + var my_wallet = document.getElementsByClassName('my_wallet')[0]; | ||
147 | + my_wallet.onclick = function() { | ||
148 | + window.location.href = 'wallet.html'; | ||
149 | + } | ||
150 | + var discount_page = document.getElementsByClassName('discount_page')[0]; | ||
151 | + discount_page.onclick = function() { | ||
152 | + window.location.href = 'discount.html'; | ||
153 | + } | ||
154 | + | ||
155 | + //待支付,制作中等跳转页面 | ||
156 | + var pend_make = document.getElementsByClassName('pend_make')[0]; | ||
157 | + var pend_pay = document.getElementsByClassName('pend_pay')[0]; | ||
158 | + var pend_take = document.getElementsByClassName('pend_take')[0]; | ||
159 | + var pend_evaluate = document.getElementsByClassName('pend_evaluate')[0]; | ||
160 | + var pend_finish = document.getElementsByClassName('pend_finish')[0]; | ||
161 | + pend_pay.onclick = function() { | ||
162 | + window.location.href = '../myorder/myorder.html'; | ||
163 | + } | ||
164 | + pend_make.onclick = function() { | ||
165 | + window.location.href = '../myorder/myorder.html'; | ||
166 | + } | ||
167 | + pend_take.onclick = function() { | ||
168 | + window.location.href = '../myorder/myorder.html'; | ||
169 | + } | ||
170 | + pend_evaluate.onclick = function() { | ||
171 | + window.location.href = '../myorder/myorder.html'; | ||
172 | + } | ||
173 | + pend_finish.onclick = function() { | ||
174 | + window.location.href = '../myorder/myorder.html'; | ||
175 | + } | ||
176 | + //待支付,制作中 数量 | ||
177 | + var white_item_num = document.getElementsByClassName('white_item_num'); | ||
178 | + for(i = 0; i < white_item_num.length; i++) { | ||
179 | + if(parseInt(white_item_num[i].innerHTML) < 1) { | ||
180 | + white_item_num[i].style.display = 'none'; | ||
181 | + } | ||
182 | + } | ||
183 | + </script> | ||
184 | + </body> | ||
185 | + | ||
186 | +</html> |
PersonCenter/discount.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + | ||
4 | + <head> | ||
5 | + <meta charset="UTF-8"> | ||
6 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="../css/swiper-3.4.2.min.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="../css/init.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" /> | ||
10 | + <link rel="stylesheet" type="text/css" href="../css/PersonCenter/discount.css" /> | ||
11 | + <script src="../js/base.js" type="text/javascript" charset="utf-8"></script> | ||
12 | + <title>我的优惠券</title> | ||
13 | + <style> | ||
14 | + .nodata{ | ||
15 | + margin-top: 90px; | ||
16 | + text-align: center; | ||
17 | + color: #999; | ||
18 | + font-size: 14px; | ||
19 | + } | ||
20 | + [v-cloak]{ | ||
21 | + display: none; | ||
22 | + } | ||
23 | + | ||
24 | + </style> | ||
25 | + </head> | ||
26 | + | ||
27 | + <body> | ||
28 | + <div class="container" id="discount"> | ||
29 | + <!--导航--> | ||
30 | + <div class="nav"> | ||
31 | + <ul> | ||
32 | + <li class="active" @click="unuse($event)">未使用</li> | ||
33 | + <li @click="alreadyuse($event)">已使用</li> | ||
34 | + <li @click="expired($event)">已过期</li> | ||
35 | + </ul> | ||
36 | + </div> | ||
37 | + <!--优惠券--> | ||
38 | + <!--<div class="discount tab"> | ||
39 | + <div class="discount_item"> | ||
40 | + <div class="discount_item_num"> | ||
41 | + <div class="discount_item_num_bxo"> | ||
42 | + <p>50</p> | ||
43 | + <p>元</p> | ||
44 | + </div> | ||
45 | + <div class="discount_item_time"> | ||
46 | + <span>全场购物满300元,立减50元</span> | ||
47 | + <span>有效期截止:2018年5月9日</span> | ||
48 | + </div> | ||
49 | + </div> | ||
50 | + <div class="discount_item_btn"> | ||
51 | + 立即使用<span>></span> | ||
52 | + </div> | ||
53 | + </div> | ||
54 | + | ||
55 | + <div class="discount_item"> | ||
56 | + <div class="discount_item_num"> | ||
57 | + <div class="discount_item_num_bxo"> | ||
58 | + <p>50</p> | ||
59 | + <p>元</p> | ||
60 | + </div> | ||
61 | + <div class="discount_item_time"> | ||
62 | + <span>全场购物满300元,立减50元</span> | ||
63 | + <span>有效期截止:2018年5月9日</span> | ||
64 | + </div> | ||
65 | + </div> | ||
66 | + <div class="discount_item_btn"> | ||
67 | + 立即使用<span>></span> | ||
68 | + </div> | ||
69 | + </div> | ||
70 | + </div>--> | ||
71 | + <div class="discount tab" v-cloak> | ||
72 | + <div class="discount_item" v-for="item in discount" :id="item.id"> | ||
73 | + <div class="discount_item_num"> | ||
74 | + <div class="discount_item_num_bxo"> | ||
75 | + <p>{{item.reduce}}</p> | ||
76 | + <p>元</p> | ||
77 | + </div> | ||
78 | + <div class="discount_item_time"> | ||
79 | + <span>{{item.discount_coupon_name}}</span> | ||
80 | + <span>有效期截止:{{item.deadline}}</span> | ||
81 | + </div> | ||
82 | + </div> | ||
83 | + <div class="discount_item_btn"> | ||
84 | + 立即使用<span>></span> | ||
85 | + </div> | ||
86 | + </div> | ||
87 | + | ||
88 | + <!--<div class="discount_item"> | ||
89 | + <div class="discount_item_num"> | ||
90 | + <div class="discount_item_num_bxo"> | ||
91 | + <p>50</p> | ||
92 | + <p>元</p> | ||
93 | + </div> | ||
94 | + <div class="discount_item_time"> | ||
95 | + <span>全场购物满300元,立减50元</span> | ||
96 | + <span>有效期截止:2018年5月9日</span> | ||
97 | + </div> | ||
98 | + </div> | ||
99 | + <div class="discount_item_btn"> | ||
100 | + 立即使用<span>></span> | ||
101 | + </div> | ||
102 | + </div>--> | ||
103 | + </div> | ||
104 | + <!--已使用--> | ||
105 | + <!--<div class="discountuesd tab"> | ||
106 | + <div class="discount_item"> | ||
107 | + <div class="discount_item_num"> | ||
108 | + <div class="discount_item_num_bxo"> | ||
109 | + <p>50</p> | ||
110 | + <p>元</p> | ||
111 | + </div> | ||
112 | + <div class="discount_item_time"> | ||
113 | + <span>全场购物满300元,立减50元</span> | ||
114 | + <span>有效期截止:2018年5月9日</span> | ||
115 | + </div> | ||
116 | + </div> | ||
117 | + <div class="discountuesd_item_btn"> | ||
118 | + 已使用<span>></span> | ||
119 | + </div> | ||
120 | + </div> | ||
121 | + | ||
122 | + <div class="discount_item"> | ||
123 | + <div class="discount_item_num"> | ||
124 | + <div class="discount_item_num_bxo"> | ||
125 | + <p>50</p> | ||
126 | + <p>元</p> | ||
127 | + </div> | ||
128 | + <div class="discount_item_time"> | ||
129 | + <span>全场购物满300元,立减50元</span> | ||
130 | + <span>有效期截止:2018年5月9日</span> | ||
131 | + </div> | ||
132 | + </div> | ||
133 | + <div class="discountuesd_item_btn"> | ||
134 | + 已使用<span>></span> | ||
135 | + </div> | ||
136 | + </div> | ||
137 | + </div> | ||
138 | + --> | ||
139 | + <!--已过期--> | ||
140 | + <!--<div class="discountuesd tab"> | ||
141 | + <div class="discount_item"> | ||
142 | + <div class="discount_item_num"> | ||
143 | + <div class="discount_item_num_bxo"> | ||
144 | + <p>50</p> | ||
145 | + <p>元</p> | ||
146 | + </div> | ||
147 | + <div class="discount_item_time"> | ||
148 | + <span>全场购物满300元,立减50元</span> | ||
149 | + <span>有效期截止:2018年5月9日</span> | ||
150 | + </div> | ||
151 | + </div> | ||
152 | + <div class="discountuesd_item_btn"> | ||
153 | + 已过期<span>></span> | ||
154 | + </div> | ||
155 | + </div> | ||
156 | + | ||
157 | + <div class="discount_item"> | ||
158 | + <div class="discount_item_num"> | ||
159 | + <div class="discount_item_num_bxo"> | ||
160 | + <p>50</p> | ||
161 | + <p>元</p> | ||
162 | + </div> | ||
163 | + <div class="discount_item_time"> | ||
164 | + <span>全场购物满300元,立减50元</span> | ||
165 | + <span>有效期截止:2018年5月9日</span> | ||
166 | + </div> | ||
167 | + </div> | ||
168 | + <div class="discountuesd_item_btn"> | ||
169 | + 已过期<span>></span> | ||
170 | + </div> | ||
171 | + </div> | ||
172 | + </div>--> | ||
173 | + <!--没有优惠券提醒--> | ||
174 | + <div class="nodata" v-if="discount.length==0"> | ||
175 | + 暂无优惠券 | ||
176 | + </div> | ||
177 | + </div> | ||
178 | + </div> | ||
179 | + <script src="../js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
180 | + <script src="../js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
181 | + <script src="../js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
182 | + <script src="../js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
183 | + <script src="../js/discount.js" type="text/javascript" charset="utf-8"></script> | ||
184 | + <script type="text/javascript"> | ||
185 | +// window.onload = function() { | ||
186 | +// var aLi = document.getElementsByClassName('nav')[0].getElementsByTagName('li'); | ||
187 | +// var tab = document.getElementsByClassName('tab'); | ||
188 | +// for(i = 0; i < aLi.length; i++) { | ||
189 | +// aLi[i].index = i; | ||
190 | +// tab[i].style.display = 'none'; | ||
191 | +// tab[0].style.display = 'block'; | ||
192 | +// aLi[i].onclick = function(){ | ||
193 | +// for (j=0; j<aLi.length; j++) { | ||
194 | +// tab[j].style.display = 'none'; | ||
195 | +// aLi[j].className = ''; | ||
196 | +// } | ||
197 | +// this.classList.add('active'); | ||
198 | +// tab[this.index].style.display="block"; | ||
199 | +// } | ||
200 | +// } | ||
201 | +// | ||
202 | +// } | ||
203 | + </script> | ||
204 | + </body> | ||
205 | + | ||
206 | +</html> |
PersonCenter/topus.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + <head> | ||
4 | + <meta charset="UTF-8"> | ||
5 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
6 | + <link rel="stylesheet" type="text/css" href="../css/swiper-3.4.2.min.css" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="../css/init.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="../css/PersonCenter/topus.css" /> | ||
10 | + <script src="../js/base.js" type="text/javascript" charset="utf-8"></script> | ||
11 | + <title>充值</title> | ||
12 | + <style> | ||
13 | + .wrapper{ | ||
14 | + width: 8rem; | ||
15 | + height: 100%; | ||
16 | + background-color: rgba(0,0,0,0.5); | ||
17 | + position: fixed; | ||
18 | + z-index: 2; | ||
19 | + margin-left: -0.4rem; | ||
20 | + | ||
21 | + } | ||
22 | + .illustrate{ | ||
23 | + width: 6.48rem; | ||
24 | + height: 7.2rem; | ||
25 | + position: absolute; | ||
26 | + z-index: 3; | ||
27 | + background-color: #FFFFFF; | ||
28 | + left: 1rem; | ||
29 | + top: 2.63rem; | ||
30 | + display: flex; | ||
31 | + flex-direction: column; | ||
32 | + align-items: center; | ||
33 | + border-radius: 0.15rem; | ||
34 | + } | ||
35 | + .certain{ | ||
36 | + width: 6.48rem; | ||
37 | + height:0.8rem; | ||
38 | + background:RGBA(0, 145, 229, 1); | ||
39 | + color:#FFFFFF; | ||
40 | + border:none; | ||
41 | + outline:none; | ||
42 | + position:absolute;; | ||
43 | + top:6.7rem; | ||
44 | + } | ||
45 | + /*标题*/ | ||
46 | + .title{ | ||
47 | + position:absolute; | ||
48 | + top:0.4rem; | ||
49 | + } | ||
50 | + .explain{ | ||
51 | + font-size: 0.4rem; | ||
52 | + color:RGBA(51, 51, 51, 1); | ||
53 | + } | ||
54 | + .text{ | ||
55 | + font-size: 0.3rem; | ||
56 | + position:absolute; | ||
57 | + top:1.2rem; | ||
58 | + width:5.4rem; | ||
59 | + color:RGBA(102, 102, 102, 1); | ||
60 | + height:5.2rem; | ||
61 | + overflow: auto; | ||
62 | + } | ||
63 | + </style> | ||
64 | + </head> | ||
65 | + <body> | ||
66 | + <div class="container" id="card"> | ||
67 | + <!--弹出框--> | ||
68 | + <!--遮罩层--> | ||
69 | + <div class="wrapper"> | ||
70 | + <!--弹出内容--> | ||
71 | + <div class="illustrate"> | ||
72 | + <div class="title"> | ||
73 | + <p class="explain">充值卡使用说明</p> | ||
74 | + </div> | ||
75 | + <div class="text"> | ||
76 | + 美食美食美食美食美食美食美食美食 | ||
77 | + 美食美食美食美食美食美食美食美食 | ||
78 | + 美食美食美食美食 | ||
79 | + 美食美食美食美食 | ||
80 | + 美食美食美食美食 | ||
81 | + 美食美食美食美食美食美食美食美食 | ||
82 | + 美食美食美食美食美食美食美食美食 | ||
83 | + 美食美食美食美食 | ||
84 | + 美食美食美食美食 | ||
85 | + 美食美食美食美食 | ||
86 | + 美食美食美食美食美食美食美食美食 | ||
87 | + 美食美食美食美食美食美食美食美食 | ||
88 | + 美食美食美食美食 | ||
89 | + 美食美食美食美食 | ||
90 | + 美食美食美食美食 | ||
91 | + 美食美食美食美食美食美食美食美食 | ||
92 | + 美食美食美食美食美食美食美食美食 | ||
93 | + 美食美食美食美食 | ||
94 | + 美食美食美食美食 | ||
95 | + 美食美食美食美食 | ||
96 | + </div> | ||
97 | + <button class="certain">确定</button> | ||
98 | + </div> | ||
99 | + </div> | ||
100 | + | ||
101 | + <div class="header"> | ||
102 | + <i class="iconfont icon-my_icon"></i><p>充值卡使用说明</p> | ||
103 | + </div> | ||
104 | + <!--<div class="top_us_card"> | ||
105 | + <p class="top_us_num">充值面额</p> | ||
106 | + <div class="top_us_num_wrap"> | ||
107 | + <p class="forever">有效期:永久</p> | ||
108 | + <p class="give_num">赠送50元</p> | ||
109 | + <span class="btn">立即充值</span> | ||
110 | + </div> | ||
111 | + <div class="money"> | ||
112 | + <p class="icon">¥</p><p class="money_num">100</p> | ||
113 | + </div> | ||
114 | + </div>--> | ||
115 | + <div class="top_us_card" v-for="item in cardindex" :id="item.id"> | ||
116 | + <p class="top_us_num">充值面额</p> | ||
117 | + <div class="top_us_num_wrap"> | ||
118 | + <p class="forever">有效期:永久</p> | ||
119 | + <p class="give_num">赠送{{item.bonus}}元</p> | ||
120 | + <span class="btn" @click="recharge(item)">立即充值</span> | ||
121 | + </div> | ||
122 | + <div class="money"> | ||
123 | + <p class="icon">¥</p><p class="money_num">{{item.denomination}}</p> | ||
124 | + </div> | ||
125 | + </div> | ||
126 | + </div> | ||
127 | + <script src="../js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
128 | + <script src="../js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
129 | + <script src="../js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
130 | + <script src="../js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
131 | + <script src="../js/topus.js" type="text/javascript" charset="utf-8"></script> | ||
132 | + <script> | ||
133 | + $(".certain").click(function(){ | ||
134 | + $('.wrapper').css("display","none") | ||
135 | + }); | ||
136 | + $(".wrapper").click(function(){ | ||
137 | + $(this).css("display","none") | ||
138 | + }); | ||
139 | + //充值卡充值弹出弹出框 | ||
140 | + $(".header").click(function(){ | ||
141 | +// alert(111) | ||
142 | + $(".wrapper").css("display","block") | ||
143 | + }); | ||
144 | + | ||
145 | + | ||
146 | + </script> | ||
147 | + | ||
148 | + </body> | ||
149 | +</html> |
PersonCenter/wallet.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + <head> | ||
4 | + <meta charset="UTF-8"> | ||
5 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
6 | + <link rel="stylesheet" type="text/css" href="../css/swiper-3.4.2.min.css" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="../css/init.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="../css/PersonCenter/wallet.css" /> | ||
10 | + <script src="../js/base.js" type="text/javascript" charset="utf-8"></script> | ||
11 | + <title>我的钱包</title> | ||
12 | + </head> | ||
13 | + <body> | ||
14 | + <div class="container" id="wallet"> | ||
15 | + <div class="banner"> | ||
16 | + <p class="balance">钱包余额</p> | ||
17 | + <div class="money"> | ||
18 | + <p class="balance_num">{{money}}</p><span class="balance_num_unit">元</span> | ||
19 | + </div> | ||
20 | + </div> | ||
21 | + <div class="menu_list"> | ||
22 | + <div class="menu_item topus"> | ||
23 | + <i class="iconfont icon-balance"></i> | ||
24 | + <p>去充值</p> | ||
25 | + <span>></span> | ||
26 | + </div> | ||
27 | + <div class="menu_item walletdetails"> | ||
28 | + <i class="iconfont icon-icon-test"></i> | ||
29 | + <p>钱包明细</p> | ||
30 | + <span>></span> | ||
31 | + </div> | ||
32 | + </div> | ||
33 | + </div> | ||
34 | + <script src="../js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
35 | + <script src="../js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
36 | + <script src="../js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
37 | + <script src="../js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
38 | + <script src="../js/wallet.js" type="text/javascript" charset="utf-8"></script> | ||
39 | + <script type="text/javascript"> | ||
40 | + var topus = document.getElementsByClassName('topus')[0]; | ||
41 | + var walletdetails = document.getElementsByClassName('walletdetails')[0]; | ||
42 | + topus.onclick = function(){ | ||
43 | + window.location.href = 'topus.html'; | ||
44 | + } | ||
45 | + walletdetails.onclick = function(){ | ||
46 | + window.location.href = 'walletdetails.html'; | ||
47 | + } | ||
48 | + </script> | ||
49 | + </body> | ||
50 | +</html> |
PersonCenter/walletdetails.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + | ||
4 | + <head> | ||
5 | + <meta charset="UTF-8"> | ||
6 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="../css/swiper-3.4.2.min.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="../css/init.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" /> | ||
10 | + <link rel="stylesheet" type="text/css" href="../css/PersonCenter/walletdetails.css" /> | ||
11 | + <script src="../js/base.js" type="text/javascript" charset="utf-8"></script> | ||
12 | + <title>钱包明细</title> | ||
13 | + </head> | ||
14 | + | ||
15 | + <body> | ||
16 | + <div class="container" id="walletdetail"> | ||
17 | + <div class="details"> | ||
18 | + <!--<div class="details_item"> | ||
19 | + <div class="buy_wrap"> | ||
20 | + <p class="buy">购买胡辣汤</p> | ||
21 | + <p class="num">- ¥1000</p> | ||
22 | + </div> | ||
23 | + <div class="buy_wrap"> | ||
24 | + <p class="time">2018-3-27 18:09</p> | ||
25 | + <p class="time">支出</p> | ||
26 | + </div> | ||
27 | + </div> | ||
28 | + <div class="details_item"> | ||
29 | + <div class="buy_wrap"> | ||
30 | + <p class="buy">充值</p> | ||
31 | + <p class="num_add">+ ¥1000</p> | ||
32 | + </div> | ||
33 | + <div class="buy_wrap"> | ||
34 | + <p class="time">2018-3-27 18:09</p> | ||
35 | + <p class="time">收入</p> | ||
36 | + </div> | ||
37 | + </div>--> | ||
38 | + <div class="details_item" v-for="item in detail"> | ||
39 | + <div class="buy_wrap"> | ||
40 | + <p class="buy">{{item.log_type}}</p> | ||
41 | + <p class="num" v-if="item.log_type=='购买商品'">-¥{{item.amount}}</p> | ||
42 | + <p class="num_add" v-if="item.log_type=='充值'">+¥{{item.amount}}</p> | ||
43 | + </div> | ||
44 | + <div class="buy_wrap"> | ||
45 | + <p class="time">{{item.create_time}}</p> | ||
46 | + <p class="time">{{item.log_type}}</p> | ||
47 | + </div> | ||
48 | + </div> | ||
49 | + </div> | ||
50 | + </div> | ||
51 | + <script src="../js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
52 | + <script src="../js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
53 | + <script src="../js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
54 | + <script src="../js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
55 | + <script src="../js/walletdetail.js" type="text/javascript" charset="utf-8"></script> | ||
56 | + </body> | ||
57 | + | ||
58 | +</html> |
TakeDetails.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + | ||
4 | + <head> | ||
5 | + <meta charset="UTF-8"> | ||
6 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="css/swiper-3.4.2.min.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="css/init.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" /> | ||
10 | + <link rel="stylesheet" type="text/css" href="css/index.css" /> | ||
11 | + <script src="js/base.js" type="text/javascript" charset="utf-8"></script> | ||
12 | + <title>门店详情</title> | ||
13 | + </head> | ||
14 | + | ||
15 | + <body> | ||
16 | + <div class="container" id="spotdetail"> | ||
17 | + | ||
18 | + <div class="add_wrap"> | ||
19 | + <div class="add_wrap_text"> | ||
20 | + <p style="font-size: 0.3rem;margin-bottom: 0.3rem;">详细地址</p> | ||
21 | + <p style="font-size: 0.28rem; color: #666666;margin-top: 0.21rem;">{{spotdetail.spot_detail_address}}</p> | ||
22 | + </div> | ||
23 | + <span>场景图片</span> | ||
24 | + <div class="address_pic_list" v-html="spotdetail.photo"> | ||
25 | + <!--<img src="img/2@2x.png" /> | ||
26 | + <img src="img/@2x.png" /> | ||
27 | + <img src="img/2@2x.png" /> | ||
28 | + <img src="img/@2x.png" /> | ||
29 | + <img src="img/2@2x.png" /> | ||
30 | + <img src="img/@2x.png" /> | ||
31 | + <img src="img/2@2x.png" /> | ||
32 | + <img src="img/@2x.png" />--> | ||
33 | + | ||
34 | + | ||
35 | + </div> | ||
36 | + | ||
37 | + </div> | ||
38 | + </div> | ||
39 | + | ||
40 | + | ||
41 | + <script src="js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
42 | + <script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
43 | + <script src="js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
44 | + <script src="js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
45 | + <script src="js/takedetails.js" type="text/javascript" charset="utf-8"></script> | ||
46 | + </body> | ||
47 | + | ||
48 | +</html> |
about.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + | ||
4 | + <head> | ||
5 | + <meta charset="UTF-8"> | ||
6 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="css/swiper-3.4.2.min.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="css/init.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_to180rktm1butyb9.css" /> | ||
10 | + <link rel="stylesheet" type="text/css" href="css/about.css" /> | ||
11 | + <script src="js/base.js" type="text/javascript" charset="utf-8"></script> | ||
12 | + <title>关于我们</title> | ||
13 | + </head> | ||
14 | + | ||
15 | + <body> | ||
16 | + <div class="container" id="aboutus"> | ||
17 | + <!--banner--> | ||
18 | + <div class="about_banner"> | ||
19 | + <!--<img src="img/矩形10@2x.png" />--> | ||
20 | + <img :src="about.thumb" /> | ||
21 | + </div> | ||
22 | + <!--文字--> | ||
23 | + <div class="about_text"> | ||
24 | + <h1>{{about.post_title}}</h1> | ||
25 | + <div v-html="about.post_content"> | ||
26 | + <!--<p>胡辣汤由多种天然中草药按比例配制的汤料再加入胡椒和辣椒又用骨头汤做底料的胡辣汤,其特点是汤味浓郁、汤色靓丽、汤汁粘稠,香辣可口,十分适合配合其它早点进餐。 | ||
27 | + </p> | ||
28 | + <p>目前,已经发展成为河南及陕西等周边省份都喜爱和知晓的小吃之一。 | ||
29 | + </p> | ||
30 | + <p>是中国河南的特色汤类食品,后传入陕西,被大家所喜爱,常作为早餐,其特点是麻辣鲜香,营养开胃,适合搭配油条、包子、葱油饼、锅盔,千层饼等面点。 | ||
31 | + </p> | ||
32 | + <p>可与豆腐脑约1:1混合,称为“两掺”,降低了麻辣程度,不仅卖相更好看了,而且也很受欢迎。</p>--> | ||
33 | + </div> | ||
34 | + | ||
35 | + </div> | ||
36 | + <!--<div class="edit"> | ||
37 | + 文本编辑区 | ||
38 | + </div>--> | ||
39 | + </div> | ||
40 | + | ||
41 | + <script src="js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
42 | + <script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
43 | + <script src="js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
44 | + <script src="js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
45 | + <script src="js/aboutus.js" type="text/javascript" charset="utf-8"></script> | ||
46 | + </body> | ||
47 | + | ||
48 | +</html> |
addressdetails.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html> | ||
3 | + | ||
4 | + <head> | ||
5 | + <meta charset="UTF-8"> | ||
6 | + <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
7 | + <link rel="stylesheet" type="text/css" href="css/swiper-3.4.2.min.css" /> | ||
8 | + <link rel="stylesheet" type="text/css" href="css/init.css" /> | ||
9 | + <link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" /> | ||
10 | + <link rel="stylesheet" type="text/css" href="css/index.css" /> | ||
11 | + <script src="js/base.js" type="text/javascript" charset="utf-8"></script> | ||
12 | + <title>门店详情</title> | ||
13 | + </head> | ||
14 | + | ||
15 | + <body> | ||
16 | + <div class="container" id="addressdetail"> | ||
17 | + <div class="add_wrap"> | ||
18 | + <div class="add_wrap_text"> | ||
19 | + <p style="font-size: 0.3rem;margin-bottom: 0.3rem;">{{address.store_name}}<span style="font-size: 0.28rem; color: #FCB801; margin-left: 0.31rem;">距您{{address.distance_text}}</span></p> | ||
20 | + <p style="font-size: 0.28rem; color: #666666;"><i class="iconfont icon-hdxq_icon1" style="font-size: 0.26rem; margin-right: 0.15rem;"></i>营业时间:{{address.open_start}}-{{address.open_end}}</p> | ||
21 | + <p style="font-size: 0.28rem; color: #666666;margin-top: 0.21rem;"><i class="iconfont icon-hdxq_icon" style="font-size: 0.26rem; margin-right: 0.15rem;"></i>{{address.store_address}}</p> | ||
22 | + </div> | ||
23 | + <span>场景图片</span> | ||
24 | + <div class="address_pic_list" v-html="photo"> | ||
25 | + <!--<img src="img/2@2x.png" />--> | ||
26 | + <!--<img src="img/@2x.png" />--> | ||
27 | + <!--<img src="img/2@2x.png" />--> | ||
28 | + <!--<img src="img/@2x.png" />--> | ||
29 | + <!--<img src="img/2@2x.png" />--> | ||
30 | + <!--<img src="img/@2x.png" />--> | ||
31 | + <!--<img src="img/2@2x.png" />--> | ||
32 | + <!--<img src="img/@2x.png" />--> | ||
33 | + </div> | ||
34 | + | ||
35 | + </div> | ||
36 | + </div> | ||
37 | + | ||
38 | + <script src="js/vue.min.js" type="text/javascript" charset="utf-8"></script> | ||
39 | + <script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
40 | + <script src="js/swiper-3.4.2.jquery.min.js" type="text/javascript" charset="utf-8"></script> | ||
41 | + <script src="js/cookie.js" type="text/javascript" charset="utf-8"></script> | ||
42 | + <script src="js/addressdetail.js" type="text/javascript" charset="utf-8"></script> | ||
43 | + </body> | ||
44 | + | ||
45 | +</html> |
css/PersonCenter/PersonCenter.css
0 → 100644
1 | +.container{ | ||
2 | + padding: 0 0.4rem; | ||
3 | + position: relative; | ||
4 | + font-family:PingFangSC-Regular;; | ||
5 | +} | ||
6 | +/*遮罩*/ | ||
7 | +.wrap{ | ||
8 | + width: 7.5rem; | ||
9 | + height: 100%; | ||
10 | + background-color:rgba(0,0,0,0.5); | ||
11 | + position: fixed; | ||
12 | + z-index: 2; | ||
13 | + margin-left: -0.4rem; | ||
14 | + display: none; | ||
15 | +} | ||
16 | +/*弹层*/ | ||
17 | +.popup{ | ||
18 | + width: 5.48rem; | ||
19 | + height: 3.2rem; | ||
20 | + position: absolute; | ||
21 | + z-index: 3; | ||
22 | + background-color: #FFFFFF; | ||
23 | + left: 1rem; | ||
24 | + top: 4.63rem; | ||
25 | + display: flex; | ||
26 | + flex-direction: column; | ||
27 | + align-items: center; | ||
28 | + border-radius: 0.15rem; | ||
29 | + overflow: hidden; | ||
30 | +} | ||
31 | +.popup p{ | ||
32 | + font-size: 0.26rem; | ||
33 | + color: #999999; | ||
34 | + margin-top: 0.7rem; | ||
35 | + text-align: center; | ||
36 | +} | ||
37 | +.popup span{ | ||
38 | + font-size: 0.42rem; | ||
39 | + margin-top: 0.4rem; | ||
40 | + color: #333333; | ||
41 | + text-align: center; | ||
42 | +} | ||
43 | +.popup_footer{ | ||
44 | + width: 5.48rem; | ||
45 | + height: 0.8rem; | ||
46 | + position: absolute; | ||
47 | + bottom: 0; | ||
48 | + left: 0; | ||
49 | + background-color: #FFB800; | ||
50 | + text-align: center; | ||
51 | + line-height: 0.8rem; | ||
52 | + color: #FFFFFF; | ||
53 | + font-size: 0.3rem; | ||
54 | +} | ||
55 | +/*个人信息*/ | ||
56 | +.person_info{ | ||
57 | + display: flex; | ||
58 | + align-items: center; | ||
59 | + margin-top: 0.42rem; | ||
60 | +} | ||
61 | +.person_info img{ | ||
62 | + width: 1.08rem; | ||
63 | + height: 1.08rem; | ||
64 | + display: block; | ||
65 | + border-radius: 50%; | ||
66 | + margin-right: 0.41rem; | ||
67 | +} | ||
68 | +.person_name{ | ||
69 | + font-size: 0.34rem; | ||
70 | + color: #333333; | ||
71 | + margin-right: 2.1rem; | ||
72 | + white-space: nowrap; | ||
73 | + width:1.3rem; | ||
74 | +} | ||
75 | +.person_info_btn{ | ||
76 | + font-size: 0.26rem; | ||
77 | + color: #FEAD00; | ||
78 | + display: block; | ||
79 | + width: 1.68rem; | ||
80 | + height: 0.57rem; | ||
81 | + line-height: 0.57rem; | ||
82 | + text-align: center; | ||
83 | + border: 1px solid #FEAD00; | ||
84 | + border-radius: 0.29rem; | ||
85 | +} | ||
86 | +/*待支付-制作中*/ | ||
87 | +.white{ | ||
88 | + display: flex; | ||
89 | + margin-top: 0.64rem; | ||
90 | +} | ||
91 | +.white .iconfont{ | ||
92 | + font-size: 0.4rem; | ||
93 | + text-align: center; | ||
94 | + margin-bottom: 0.14rem; | ||
95 | +} | ||
96 | +.white_item{ | ||
97 | + display: flex; | ||
98 | + flex-direction: column; | ||
99 | + width: 25%; | ||
100 | + position: relative; | ||
101 | +} | ||
102 | +.white_item p{ | ||
103 | + font-size: 0.26rem; | ||
104 | + color: #666666; | ||
105 | + text-align: center; | ||
106 | +} | ||
107 | +.white_item_num{ | ||
108 | + position: absolute; | ||
109 | + width: 0.28rem; | ||
110 | + height: 0.28rem; | ||
111 | + background-color: #FF4800; | ||
112 | + right: 0.3rem; | ||
113 | + top: -0.1rem; | ||
114 | + border-radius: 50%; | ||
115 | + color: #FFFFFF; | ||
116 | + font-size: 0.2rem; | ||
117 | + text-align: center; | ||
118 | + line-height: 0.28rem; | ||
119 | +} | ||
120 | +/*我的钱包*/ | ||
121 | +.menu_list{ | ||
122 | + margin-top: 0.3rem; | ||
123 | +} | ||
124 | +.menu_item{ | ||
125 | + display: flex; | ||
126 | + height: 1.1rem; | ||
127 | + line-height: 1.1rem; | ||
128 | + border-bottom: 1px solid #E4E4E4; | ||
129 | +} | ||
130 | +.menu_item p{ | ||
131 | + font-size: 0.3rem; | ||
132 | + color: #333333; | ||
133 | + margin-left: 0.21rem; | ||
134 | + white-space: nowrap; | ||
135 | + position: relative; | ||
136 | +} | ||
137 | +.menu_item span{ | ||
138 | + font-size: 0.2rem; | ||
139 | + position: absolute; | ||
140 | + right: 0.57rem; | ||
141 | +} | ||
142 | +.menu_list .icon-qianbao{ | ||
143 | + color: #FEE19D; | ||
144 | + font-size: 0.3rem; | ||
145 | +} | ||
146 | +.menu_list .icon-youhuiquan{ | ||
147 | + color: #FEBAAE; | ||
148 | + font-size: 0.24rem; | ||
149 | +} | ||
150 | +.menu_list .icon-liwu{ | ||
151 | + font-size: 0.3rem; | ||
152 | + color: #FEBF8C; | ||
153 | +} | ||
154 | +.menu_list .icon-erji{ | ||
155 | + font-size: 0.3rem; | ||
156 | + color: #CDBEEC; | ||
157 | +} | ||
158 | +/*footer*/ | ||
159 | +.footer{ | ||
160 | + position: fixed; | ||
161 | + bottom: 0; | ||
162 | + left: 0; | ||
163 | + width: 7.5rem; | ||
164 | + left: 50%; | ||
165 | + margin-left: -3.75rem; | ||
166 | + border-top: 1px solid #CCCCCC; | ||
167 | + background-color: #FFFFFF; | ||
168 | + font-size: 0.22rem; | ||
169 | + height: 1rem; | ||
170 | + display: flex; | ||
171 | + justify-content: space-around; | ||
172 | +} | ||
173 | +.footer_item { | ||
174 | + display: flex; | ||
175 | + flex-direction: column; | ||
176 | + justify-content: center; | ||
177 | + align-items: center; | ||
178 | + text-align: center; | ||
179 | +} | ||
180 | +.footer_item span{ | ||
181 | + color: #999999; | ||
182 | +} | ||
183 | +.footer_item img{ | ||
184 | + width: 0.7rem; | ||
185 | + height: 0.7rem; | ||
186 | +} | ||
187 | +.footer_active span{ | ||
188 | + color: #FEAD00; | ||
189 | +} |
css/PersonCenter/discount.css
0 → 100644
1 | +.container{ | ||
2 | + position: relative; | ||
3 | + font-family:PingFangSC-Regular; | ||
4 | +} | ||
5 | +.nav { | ||
6 | + margin-bottom: 0.65rem; | ||
7 | +} | ||
8 | +.nav ul { | ||
9 | + display: flex; | ||
10 | + font-size: 0.3rem; | ||
11 | + margin-top: 0.44rem; | ||
12 | + justify-content: center; | ||
13 | +} | ||
14 | +.nav ul li{ | ||
15 | + display: block; | ||
16 | + width: 30%; | ||
17 | + text-align: center; | ||
18 | + color: #666666; | ||
19 | +} | ||
20 | +.nav .active { | ||
21 | + color: #333333; | ||
22 | + position: relative; | ||
23 | +} | ||
24 | +.nav .active:before{ | ||
25 | + content: ''; | ||
26 | + display: block; | ||
27 | + width: 0.48rem; | ||
28 | + height: 0.1rem; | ||
29 | + background-color: #FFCC00; | ||
30 | + position: absolute; | ||
31 | + left: 0.65rem; | ||
32 | + bottom: 0; | ||
33 | + top: 0.44rem; | ||
34 | + border-radius: 0.05rem; | ||
35 | +} | ||
36 | + | ||
37 | + | ||
38 | +/*discount*/ | ||
39 | +.discount_item{ | ||
40 | + width: 7rem; | ||
41 | + margin: 0.25rem auto 0; | ||
42 | + border: 1px solid #E4E4E4; | ||
43 | + border-radius: 0.15rem; | ||
44 | +} | ||
45 | +.discount_item_num{ | ||
46 | + width: 7rem; | ||
47 | + height: 1.7rem; | ||
48 | + border-bottom: none; | ||
49 | + display: flex; | ||
50 | + position: relative; | ||
51 | +} | ||
52 | +.discount_item_num_bxo{ | ||
53 | + display: flex; | ||
54 | + align-items: baseline; | ||
55 | +} | ||
56 | +.discount_item_num:before{ | ||
57 | + content: ''; | ||
58 | + display: block; | ||
59 | + width: 0.08rem; | ||
60 | + height: 0.16rem; | ||
61 | + position: absolute; | ||
62 | + background-color: #FFFFFF; | ||
63 | + left: -0.015rem; | ||
64 | + bottom: -0.1rem; | ||
65 | + border: 1px solid #E4E4E4; | ||
66 | + border-left: none; | ||
67 | + z-index: 22; | ||
68 | + border-radius: 0 0.16rem 0.16rem 0; | ||
69 | +} | ||
70 | +.discount_item_num:after{ | ||
71 | + content: ''; | ||
72 | + display: block; | ||
73 | + width: 0.08rem; | ||
74 | + height: 0.16rem; | ||
75 | + position: absolute; | ||
76 | + background-color: #FFFFFF; | ||
77 | + bottom: -0.1rem; | ||
78 | + right: 0.01rem; | ||
79 | + border: 1px solid #E4E4E4; | ||
80 | + border-right: none; | ||
81 | + z-index: 22; | ||
82 | + border-radius: 0.16rem 0 0 0.16rem ; | ||
83 | +} | ||
84 | +.discount_item_num p:nth-child(1){ | ||
85 | + font-size: 0.8rem; | ||
86 | + color: #C90103; | ||
87 | + line-height: 1.7rem; | ||
88 | + margin-left: 0.6rem; | ||
89 | +} | ||
90 | +.discount_item_num p:nth-child(2){ | ||
91 | + font-size: 0.26rem; | ||
92 | + color: #999999; | ||
93 | + margin-left: 0.13rem; | ||
94 | +} | ||
95 | +.discount_item_time{ | ||
96 | + display: flex; | ||
97 | + flex-direction: column; | ||
98 | + height: 100%; | ||
99 | + margin-left: 0.6rem; | ||
100 | +} | ||
101 | +.discount_item_time span:nth-child(1){ | ||
102 | + font-size: 0.3rem; | ||
103 | + color: #333333; | ||
104 | + margin-top: 0.54rem; | ||
105 | +} | ||
106 | +.discount_item_time span:nth-child(2){ | ||
107 | + font-size: 0.26rem; | ||
108 | + color: #999999; | ||
109 | + margin-top: 0.21rem; | ||
110 | +} | ||
111 | + | ||
112 | +.discount_item_btn,.discountuesd_item_btn{ | ||
113 | + width: 7rem; | ||
114 | + height: 0.83rem; | ||
115 | + border-top: 1px dotted #E4E4E4; | ||
116 | + font-size: 0.3rem; | ||
117 | + line-height: 0.83rem; | ||
118 | + text-align: center; | ||
119 | +} | ||
120 | +.discount_item_btn{ | ||
121 | + color: #C90103; | ||
122 | +} | ||
123 | +.discount_item_btn span{ | ||
124 | + margin-left: 0.22rem; | ||
125 | +} | ||
126 | + | ||
127 | + | ||
128 | +/*已使用*/ | ||
129 | +.discountuesd_item_btn{ | ||
130 | + color: #666666; | ||
131 | +} | ||
132 | +.discountuesd_item_btn span{ | ||
133 | + margin-left: 0.22rem; | ||
134 | +} |
css/PersonCenter/topus.css
0 → 100644
1 | +.container{ | ||
2 | + position: relative; | ||
3 | + font-family:PingFangSC-Regular;; | ||
4 | +} | ||
5 | +.header{ | ||
6 | + display: flex; | ||
7 | + justify-content: flex-end; | ||
8 | + margin-top: 0.3rem; | ||
9 | + margin-bottom: 0.4rem; | ||
10 | + margin-right: 0.41rem; | ||
11 | +} | ||
12 | +.header .icon-my_icon{ | ||
13 | + font-size: 0.3rem; | ||
14 | + color: #999999; | ||
15 | + margin-right: 0.11rem; | ||
16 | +} | ||
17 | +.header p{ | ||
18 | + font-size: 0.28rem; | ||
19 | + color: #666666; | ||
20 | +} | ||
21 | + | ||
22 | +.top_us_card{ | ||
23 | + width: 7rem; | ||
24 | + height: 3.36rem; | ||
25 | + background: url(../../img/矩形1@2x.png) center no-repeat; | ||
26 | + margin: 0 auto; | ||
27 | + border-radius: 0.15rem; | ||
28 | + padding: 0.4rem 0.4rem 0.46rem 0.43rem; | ||
29 | + color: #FFFFFF; | ||
30 | + display: flex; | ||
31 | + justify-content: space-between; | ||
32 | + position: relative; | ||
33 | + margin-bottom: 0.44rem; | ||
34 | +} | ||
35 | +.top_us_num{ | ||
36 | + font-size: 0.28rem; | ||
37 | + color: #FFFFFF; | ||
38 | + width: 1.5rem; | ||
39 | +} | ||
40 | +.top_us_num_wrap{ | ||
41 | + float: right; | ||
42 | + display: flex; | ||
43 | + width: 50%; | ||
44 | + flex-direction: column; | ||
45 | + align-items: flex-end; | ||
46 | +} | ||
47 | +.forever ,.give_num{ | ||
48 | + font-size: 0.28rem; | ||
49 | +} | ||
50 | +.give_num{ | ||
51 | + margin-top: 0.4rem; | ||
52 | +} | ||
53 | +.top_us_card .btn{ | ||
54 | + display: block; | ||
55 | + font-size: 0.3rem; | ||
56 | + color: #333333; | ||
57 | + width: 1.91rem ; | ||
58 | + height: 0.71rem; | ||
59 | + text-align: center; | ||
60 | + line-height: 0.71rem; | ||
61 | + background-color: #FFE400; | ||
62 | + border-radius: 0.08rem; | ||
63 | + margin-top: 0.86rem; | ||
64 | +} | ||
65 | +.money { | ||
66 | + display: flex; | ||
67 | + position: absolute; | ||
68 | + left: 0.48rem; | ||
69 | + top: 1.56rem; | ||
70 | +} | ||
71 | +.money .icon{ | ||
72 | + font-size: 0.48rem; | ||
73 | + left: 0.48rem; | ||
74 | + top: 1.9rem; | ||
75 | + margin-top: 0.3rem; | ||
76 | + margin-right: 0.08rem; | ||
77 | +} | ||
78 | +.money .money_num{ | ||
79 | + left: 0.85rem; | ||
80 | + top: 1.56rem; | ||
81 | + font-size: 0.86rem; | ||
82 | +} |
css/PersonCenter/wallet.css
0 → 100644
1 | +.container{ | ||
2 | + position: relative; | ||
3 | + font-family:PingFangSC-Regular;; | ||
4 | +} | ||
5 | + | ||
6 | +/*banner*/ | ||
7 | +.banner{ | ||
8 | + width: 100%; | ||
9 | + background: url(../../img/矩形1@2x.png) center no-repeat; | ||
10 | + background-size: 100% 100%; | ||
11 | + height: 3.7rem; | ||
12 | + color: #FFFFFF; | ||
13 | + padding: 0.4rem 0.44rem; | ||
14 | +} | ||
15 | +.balance{ | ||
16 | + font-size: 0.28rem; | ||
17 | + | ||
18 | +} | ||
19 | +.balance_num{ | ||
20 | + font-size: 0.86rem; | ||
21 | +} | ||
22 | +.balance_num_unit{ | ||
23 | + font-size: 0.26rem; | ||
24 | + line-height: 1.4rem; | ||
25 | + margin-left: 0.18rem; | ||
26 | +} | ||
27 | +.money{ | ||
28 | + display: flex; | ||
29 | + width: 2rem; | ||
30 | + margin: 0 auto; | ||
31 | + margin-top: 0.7rem; | ||
32 | +} | ||
33 | +/*我的钱包*/ | ||
34 | +.menu_list{ | ||
35 | + margin-top: 0.06rem; | ||
36 | +} | ||
37 | +.menu_item{ | ||
38 | + display: flex; | ||
39 | + height: 1.1rem; | ||
40 | + line-height: 1.1rem; | ||
41 | + border-bottom: 1px solid #E4E4E4; | ||
42 | + padding-left: 0.4rem; | ||
43 | +} | ||
44 | +.menu_item p{ | ||
45 | + font-size: 0.3rem; | ||
46 | + color: #333333; | ||
47 | + margin-left: 0.21rem; | ||
48 | + white-space: nowrap; | ||
49 | + position: relative; | ||
50 | +} | ||
51 | +.menu_item span{ | ||
52 | + font-size: 0.2rem; | ||
53 | + position: absolute; | ||
54 | + right: 0.57rem; | ||
55 | +} | ||
56 | +.menu_item .icon-balance{ | ||
57 | + font-size: 0.3rem; | ||
58 | + color: #7FCBFF; | ||
59 | +} | ||
60 | +.menu_item .icon-icon-test{ | ||
61 | + font-size: 0.3rem; | ||
62 | + color: #F6C687; | ||
63 | +} |
css/PersonCenter/walletdetails.css
0 → 100644
1 | +.container{ | ||
2 | + position: relative; | ||
3 | + font-family:PingFangSC-Regular;; | ||
4 | +} | ||
5 | + | ||
6 | +.details_item{ | ||
7 | + padding: 0.6rem 0.4rem; | ||
8 | + border-bottom: 1px solid #E4E4E4; | ||
9 | + | ||
10 | +} | ||
11 | +.buy_wrap{ | ||
12 | + display: flex; | ||
13 | + justify-content: space-between; | ||
14 | +} | ||
15 | +.buy_wrap:first-child{ | ||
16 | + margin-bottom: 0.2rem; | ||
17 | +} | ||
18 | +.buy{ | ||
19 | + font-size: 0.3rem; | ||
20 | + color: #333333; | ||
21 | +} | ||
22 | +.num{ | ||
23 | + font-size: 0.3rem; | ||
24 | + color: #ED4300; | ||
25 | +} | ||
26 | +.time{ | ||
27 | + font-size: 0.26rem; | ||
28 | + color: #999999; | ||
29 | +} | ||
30 | +.num_add{ | ||
31 | + font-size: 0.3rem; | ||
32 | + color: #00A9FF; | ||
33 | +} |
css/about.css
0 → 100644
1 | +.about_banner{ | ||
2 | + width: 100%; | ||
3 | + height: 4.48rem; | ||
4 | + margin-bottom: 0.7rem; | ||
5 | + overflow: hidden; | ||
6 | + font-family: font-family:PingFangSC-Regular;; | ||
7 | +} | ||
8 | +.about_banner img{ | ||
9 | + width: 100%; | ||
10 | + height: 100%; | ||
11 | +} | ||
12 | + | ||
13 | +/*文字*/ | ||
14 | +.about_text{ | ||
15 | + padding: 0 0.43rem 0.56rem; | ||
16 | + border-bottom: 1px solid #E4E4E4; | ||
17 | +} | ||
18 | +.about_text h1{ | ||
19 | + font-size: 0.32rem; | ||
20 | + color: #1A1A1A; | ||
21 | + text-align: center; | ||
22 | + margin-bottom: 0.37rem; | ||
23 | +} | ||
24 | +.about_text p{ | ||
25 | + font-size: 0.28rem; | ||
26 | + color: #666666; | ||
27 | + line-height: 0.48rem; | ||
28 | +} | ||
29 | + | ||
30 | +/*文本编辑区*/ | ||
31 | +.edit{ | ||
32 | + font-size: 0.28rem; | ||
33 | + color: #666666; | ||
34 | + text-align: center; | ||
35 | +} |
css/bootstrap.min.css
0 → 100644
此 diff 太大无法显示。
css/demo.css
0 → 100644
1 | +body{ | ||
2 | + /*background: #494A5F; | ||
3 | + color: #D5D6E2;*/ | ||
4 | + font-weight: 500; | ||
5 | + font-size: 0.2em; | ||
6 | + font-family: "Microsoft YaHei","宋体","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif, FreeSans, Arimo; | ||
7 | +} | ||
8 | +a{color: #2fa0ec;text-decoration: none;outline: none;} | ||
9 | +a:hover,a:focus{color:#74777b;} | ||
10 | + | ||
11 | +.container{ | ||
12 | + margin: 0 auto; | ||
13 | + overflow: hidden; | ||
14 | +} |
css/demos.css
0 → 100644
1 | +body, html { | ||
2 | + height: 100%; | ||
3 | + -webkit-tap-highlight-color: transparent; | ||
4 | +} | ||
5 | +.demos-title { | ||
6 | + text-align: center; | ||
7 | + font-size: 34px; | ||
8 | + color: #3cc51f; | ||
9 | + font-weight: 400; | ||
10 | + margin: 0 15%; | ||
11 | +} | ||
12 | + | ||
13 | +.demos-sub-title { | ||
14 | + text-align: center; | ||
15 | + color: #888; | ||
16 | + font-size: 14px; | ||
17 | +} | ||
18 | + | ||
19 | +.demos-header { | ||
20 | + padding: 35px 0; | ||
21 | +} | ||
22 | + | ||
23 | +.demos-content-padded { | ||
24 | + padding: 15px; | ||
25 | +} | ||
26 | + | ||
27 | +.demos-second-title { | ||
28 | + text-align: center; | ||
29 | + font-size: 24px; | ||
30 | + color: #3cc51f; | ||
31 | + font-weight: 400; | ||
32 | + margin: 0 15%; | ||
33 | +} | ||
34 | + | ||
35 | +footer { | ||
36 | + text-align: center; | ||
37 | + font-size: 14px; | ||
38 | + padding: 20px; | ||
39 | +} | ||
40 | + | ||
41 | +footer a { | ||
42 | + color: #999; | ||
43 | + text-decoration: none; | ||
44 | +} |
css/example.css
0 → 100644
1 | +body,html{height:100%;-webkit-tap-highlight-color:transparent}body{font-family:-apple-system-font,Helvetica Neue,Helvetica,sans-serif}ul{list-style:none}.page,body{background-color:#f8f8f8}.link{color:#1aad19}.container{overflow:hidden}.container,.page{position:absolute;top:0;right:0;bottom:0;left:0}.page{overflow-y:auto;-webkit-overflow-scrolling:touch;opacity:0;z-index:1}.page.js_show{opacity:1}.page__hd{padding:40px}.page__bd_spacing{padding:0 15px}.page__ft{padding-top:40px;padding-bottom:10px;text-align:center}.page__ft img{height:19px}.page__ft.j_bottom{position:absolute;bottom:0;left:0;right:0}.page__title{text-align:left;font-size:20px;font-weight:400}.page__desc{margin-top:5px;color:#888;text-align:left;font-size:14px}.page.home .page__intro-icon{margin-top:-.2em;margin-left:5px;width:16px;height:16px;vertical-align:middle}.page.home .page__title{font-size:0;margin-bottom:15px}.page.home .page__bd img{width:30px;height:30px}.page.home .page__bd li{margin:10px 0;background-color:#fff;overflow:hidden;border-radius:2px;cursor:pointer}.page.home .page__bd li.js_show .weui-flex{opacity:.4}.page.home .page__bd li.js_show .page__category{height:auto}.page.home .page__bd li.js_show .page__category-content{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.page.home .page__bd li:first-child{margin-top:0}.page.home .page__category{height:0;overflow:hidden}.page.home .page__category-content{opacity:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:.3s;transition:.3s}.page.home .weui-flex{padding:20px;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-transition:.3s;transition:.3s}.page.home .weui-cells{margin-top:0}.page.home .weui-cells:after,.page.home .weui-cells:before{display:none}.page.home .weui-cell{padding-left:20px;padding-right:20px}.page.home .weui-cell:before{left:20px;right:20px}.page.button .page__bd{padding:0 15px}.page.button .button-sp-area{margin:0 auto;padding:15px 0;width:60%}.page.cell .page__bd,.page.form .page__bd{padding-bottom:30px}.page.actionsheet,.page.dialog{background-color:#fff}.page.dialog .page__bd{padding:0 15px}.page.msg,.page.msg_success,.page.msg_warn,.page.toast{background-color:#fff}.page.panel .page__bd{padding-bottom:20px}.page.article{background-color:#fff}.page.icons{text-align:center}.page.icons .page__bd{padding:0 40px;text-align:left}.page.icons .icon-box{margin-bottom:25px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.page.icons .icon-box i{margin-right:18px}.page.icons .icon-box__ctn{-webkit-flex-shrink:100;flex-shrink:100}.page.icons .icon-box__title{font-weight:400}.page.icons .icon-box__desc{margin-top:6px;font-size:12px;color:#888}.page.icons .icon_sp_area{margin-top:10px;text-align:left}.page.icons .icon_sp_area i:before{margin-bottom:5px}.page.flex .placeholder{margin:5px;padding:0 10px;background-color:#ebebeb;height:2.3em;line-height:2.3em;text-align:center;color:#cfcfcf}.page.loadmore{background-color:#fff}.page.layers{overflow-x:hidden;-webkit-perspective:1000px;perspective:1000px}@media only screen and (max-width:320px){.page.layers .page__hd{padding-left:20px;padding-right:20px}}.page.layers .page__bd{position:relative}.page.layers .page__desc{min-height:4.8em}.page.layers .layers__layer{position:absolute;left:50%;width:150px;height:266px;margin-left:-75px;box-sizing:border-box;-webkit-transition:.5s;transition:.5s;background:url(images/layers/transparent.gif) no-repeat 50%;background-size:contain;font-size:14px;color:#fff}.page.layers .layers__layer span{position:absolute;bottom:5px;left:0;right:0;text-align:center;-webkit-transition:.5s;transition:.5s}.page.layers .layers__layer:last-child span{color:#aaa}.page.layers .layers__layer.j_hide{opacity:0}.page.layers .layers__layer.j_pic span{color:transparent}@media only screen and (min-width:375px) and (min-height:603px){.page.layers .layers__layer{width:180px;height:320px;margin-left:-90px}}@media only screen and (min-width:414px) and (min-height:640px){.page.layers .layers__layer{width:200px;height:355px;margin-left:-100px}}.page.layers .layers__layer_popout{border:1px solid hsla(0,0%,80%,.5);z-index:4}.page.layers .layers__layer_popout.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(120px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(120px)}@media only screen and (max-width:320px){.page.layers .layers__layer_popout.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(140px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(140px)}}.page.layers .layers__layer_popout.j_pic{border-color:transparent;background-image:url(images/layers/popout.png)}.page.layers .layers__layer_mask{background-color:rgba(0,0,0,.5);z-index:3}.page.layers .layers__layer_mask.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(40px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(40px)}@media only screen and (max-width:320px){.page.layers .layers__layer_mask.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(80px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(80px)}}.page.layers .layers__layer_navigation{background-color:rgba(40,187,102,.5);z-index:2}.page.layers .layers__layer_navigation.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(-40px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(-40px)}@media only screen and (max-width:320px){.page.layers .layers__layer_navigation.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(20px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(20px)}}.page.layers .layers__layer_navigation.j_pic{background-color:transparent;background-image:url(images/layers/navigation.png)}.page.layers .layers__layer_content{background-color:#fff;z-index:1}.page.layers .layers__layer_content.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(-120px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(-120px)}@media only screen and (max-width:320px){.page.layers .layers__layer_content.j_transform{-webkit-transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(-40px);transform:translateX(15px) rotateX(45deg) rotate(10deg) skew(-15deg) translateZ(-40px)}}.page.layers .layers__layer_content.j_pic{background-image:url(images/layers/content.png)}.page.searchbar .searchbar-result{display:none;margin-top:0;font-size:14px}.page.searchbar .searchbar-result .weui-cell__bd{padding:2px 0 2px 20px;color:#666}.page.actionsheet,.page.picker{overflow:hidden}.page.picker{background-color:#fff}.page.gallery{overflow:hidden}@-webkit-keyframes a{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes a{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@-webkit-keyframes b{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}}@keyframes b{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}}.page.slideIn{-webkit-animation:a .2s forwards;animation:a .2s forwards}.page.slideOut{-webkit-animation:b .2s forwards;animation:b .2s forwards}@supports (constant(safe-area-inset-top)){.page{padding:constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left)}.page.navbar,.page.tabbar{padding-left:0;padding-right:0}.weui-tab__panel{padding-left:constant(safe-area-inset-left);padding-right:constant(safe-area-inset-right)}} |
css/hopeaddress.css
0 → 100644
1 | +/*第一问*/ | ||
2 | +.question_item{ | ||
3 | + margin-top: 0.7rem; | ||
4 | +} | ||
5 | +.question_item_wrap{ | ||
6 | + width: 5.5rem; | ||
7 | + margin: 0 auto; | ||
8 | +} | ||
9 | +.question_tit{ | ||
10 | + display: flex; | ||
11 | +} | ||
12 | +.question_num { | ||
13 | + display: block; | ||
14 | + width: 0.32rem ; | ||
15 | + height: 0.32rem; | ||
16 | + color: #FFFFFF; | ||
17 | + background-color: #FFCC00; | ||
18 | + font-size: 0.26rem; | ||
19 | + text-align: center; | ||
20 | + font-family: Impact; | ||
21 | + border-radius: 50%; | ||
22 | + line-height: 0.32rem; | ||
23 | +} | ||
24 | +.question_tit_text{ | ||
25 | + font-size: 0.32rem; | ||
26 | + line-height: 0.32rem; | ||
27 | + color: #FAB701; | ||
28 | + margin-left: 0.15rem; | ||
29 | +} | ||
30 | +.question_text{ | ||
31 | + font-size: 0.32rem; | ||
32 | + color: #1A1A1A; | ||
33 | + margin-top: 0.35rem; | ||
34 | + display: flex; | ||
35 | + justify-content: center; | ||
36 | +} | ||
37 | +.question_answer{ | ||
38 | + display: flex; | ||
39 | + font-size: 0.28rem; | ||
40 | + justify-content: space-around; | ||
41 | + margin-top: 0.5rem; | ||
42 | +} | ||
43 | +.question_answer span{ | ||
44 | + display: block; | ||
45 | + width: 1.46rem; | ||
46 | + height: 0.59rem; | ||
47 | + color: #333333; | ||
48 | + text-align: center; | ||
49 | + background-color: #F7F7F7; | ||
50 | + line-height: 0.59rem; | ||
51 | +} | ||
52 | +.question_answer .active{ | ||
53 | + background-color: #FFCC00; | ||
54 | +} | ||
55 | +.question_answer_choose{ | ||
56 | + display: flex; | ||
57 | + justify-content: center; | ||
58 | +} | ||
59 | +.question_answer_choose_num{ | ||
60 | + width: 2.71rem; | ||
61 | + height: 0.64rem; | ||
62 | + font-size: 0.3rem; | ||
63 | + line-height: 0.64rem; | ||
64 | + background-color: #F7F7F7; | ||
65 | + margin: 0.45rem auto 0; | ||
66 | + display: flex; | ||
67 | + padding: 0 0.25rem; | ||
68 | + display: inline-block; | ||
69 | + text-align: justify; | ||
70 | + flex-wrap: nowrap; | ||
71 | +} | ||
72 | +.question_answer_choose_num span{ | ||
73 | + display: inline-block; | ||
74 | + height: 100%; | ||
75 | + width: 100%; | ||
76 | +} | ||
77 | +.question_answer_arr{ | ||
78 | + display: flex; | ||
79 | + flex-wrap: wrap; | ||
80 | + margin-top: 0.5rem; | ||
81 | +} | ||
82 | +.question_answer_item { | ||
83 | + font-size: 0.3rem; | ||
84 | + background-color: #F7F7F7; | ||
85 | + display: flex; | ||
86 | + display: inline-block; | ||
87 | + text-align: justify; | ||
88 | + flex-wrap: nowrap; | ||
89 | + height: 0.64rem; | ||
90 | + line-height: 0.64rem; | ||
91 | + padding: 0 0.16rem 0 0.25rem; | ||
92 | + margin-right: 0.14rem; | ||
93 | + color: #999999; | ||
94 | + margin-bottom: 0.2rem; | ||
95 | + flex-wrap: nowrap; | ||
96 | +} | ||
97 | +.question_answer_item{ | ||
98 | + width: 1.25rem; | ||
99 | +} | ||
100 | +.question_answer_item_details{ | ||
101 | + border: none; | ||
102 | + font-size: 0.3rem; | ||
103 | + background-color: #F7F7F7; | ||
104 | + flex-wrap: nowrap; | ||
105 | + height: 0.64rem; | ||
106 | + line-height: 0.64rem; | ||
107 | + padding: 0 0.16rem 0 0.25rem; | ||
108 | + margin-right: 0.14rem; | ||
109 | + color: #999999; | ||
110 | + margin-bottom: 0.2rem; | ||
111 | + flex-wrap: nowrap; | ||
112 | + outline: none; | ||
113 | +} | ||
114 | +/*街道*/ | ||
115 | +.question_answer_street{ | ||
116 | + font-size: 0.3rem; | ||
117 | + background-color: #F7F7F7; | ||
118 | + display: flex; | ||
119 | + text-align: justify; | ||
120 | + justify-content: space-between; | ||
121 | + flex-wrap: nowrap; | ||
122 | + height: 0.64rem; | ||
123 | + line-height: 0.64rem; | ||
124 | + padding: 0 0.16rem 0 0.25rem; | ||
125 | + margin-right: 0.14rem; | ||
126 | + color: #999999; | ||
127 | + margin-bottom: 0.2rem; | ||
128 | + width: 1.25rem; | ||
129 | + white-space: nowrap; | ||
130 | +} | ||
131 | +.question_answer_item_details{ | ||
132 | + width: 3.04rem; | ||
133 | + margin: 0; | ||
134 | +} | ||
135 | +.question_answer_item:nth-child(3n){ | ||
136 | + margin-right: 0; | ||
137 | +} | ||
138 | +.question_answer_item span{ | ||
139 | + display: inline-block; | ||
140 | + width: 100%; | ||
141 | +} | ||
142 | +/*第四问*/ | ||
143 | +.question_item_home{ | ||
144 | + display: flex; | ||
145 | + line-height: 0.64rem; | ||
146 | +} | ||
147 | +.question_item_home_text{ | ||
148 | + font-size: 0.29rem; | ||
149 | + color: #1A1A1A; | ||
150 | + margin-right: 0.2rem; | ||
151 | + white-space: nowrap; | ||
152 | +} | ||
153 | +.favorite_food{ | ||
154 | + display: flex; | ||
155 | +} | ||
156 | +.favorite_food span{ | ||
157 | + font-size: 0.3rem; | ||
158 | + color: #1A1A1A; | ||
159 | + line-height: 0.64rem; | ||
160 | +} | ||
161 | +.favorite_food input{ | ||
162 | + height: 0.64rem; | ||
163 | + width: 2.6rem; | ||
164 | + background-color: #F7F7F7; | ||
165 | + border: none; | ||
166 | + outline: none; | ||
167 | + color: #515151; | ||
168 | + padding-left: 0.1rem; | ||
169 | +} | ||
170 | +.btn{ | ||
171 | + font-size: 0.34rem; | ||
172 | + color: #333333; | ||
173 | + width: 2.23rem; | ||
174 | + height: 0.72rem; | ||
175 | + background-color: #FFCC00; | ||
176 | + text-align: center; | ||
177 | + line-height: 0.72rem; | ||
178 | + border-radius: 0.36rem; | ||
179 | + margin: 0.71rem auto 0; | ||
180 | + font-family: Regular; | ||
181 | +} |
css/index.css
0 → 100644
1 | +.container { | ||
2 | + padding-bottom: 1rem; | ||
3 | + font-family: PingFangSC-Regular; | ||
4 | + position: relative; | ||
5 | +} | ||
6 | + | ||
7 | +.hidden { | ||
8 | + display: none; | ||
9 | +} | ||
10 | + | ||
11 | +.show { | ||
12 | + display: block; | ||
13 | +} | ||
14 | + | ||
15 | + | ||
16 | +/*遮罩*/ | ||
17 | + | ||
18 | +.wrap { | ||
19 | + width: 7.5rem; | ||
20 | + height: 100%; | ||
21 | + background-color: rgba(0,0,0,0.5); | ||
22 | + position: fixed; | ||
23 | + z-index: 2; | ||
24 | + top:36px; | ||
25 | +} | ||
26 | +/*到店堂食弹层*/ | ||
27 | +.eat_popup{ | ||
28 | + width: 7.5rem; | ||
29 | + background-color: #FFFFFF; | ||
30 | + min-height: 1rem; | ||
31 | + position: absolute; | ||
32 | + left: 0; | ||
33 | + top: 0; | ||
34 | + z-index: 4; | ||
35 | + overflow: hidden; | ||
36 | +} | ||
37 | +.address_list{ | ||
38 | + padding: 0 0.4rem 1rem; | ||
39 | + | ||
40 | +} | ||
41 | +.address_item{ | ||
42 | + border-bottom: 1px solid #E4E4E4; | ||
43 | + padding: 0.37rem 0 0.33rem; | ||
44 | + display: flex; | ||
45 | + justify-content: space-between; | ||
46 | +} | ||
47 | +.distance{ | ||
48 | + font-size: 0.3rem; | ||
49 | + color: #333333; | ||
50 | + margin-bottom: 0.32rem; | ||
51 | + line-height: 0.3rem; | ||
52 | +} | ||
53 | +.distance span{ | ||
54 | + font-size: 0.28rem; | ||
55 | + color: #FCB801; | ||
56 | + margin-left: 0.3rem; | ||
57 | +} | ||
58 | +.business{ | ||
59 | + font-size: 0.28rem; | ||
60 | + color: #666666; | ||
61 | + margin-bottom: 0.21rem; | ||
62 | + line-height: 0.28rem; | ||
63 | +} | ||
64 | +.address_item_left .iconfont{ | ||
65 | + margin-right: 0.14rem; | ||
66 | +} | ||
67 | +.business:last-child{ | ||
68 | + margin-bottom: 0; | ||
69 | +} | ||
70 | +.address_item_right{ | ||
71 | + width: 0.54rem; | ||
72 | + height: 1.33rem; | ||
73 | + color: #999999; | ||
74 | + background-color: #EEEEEE; | ||
75 | + display: flex; | ||
76 | + align-items: center; | ||
77 | + justify-content: center; | ||
78 | + font-size: 0.4rem; | ||
79 | +} | ||
80 | +/*弹层*/ | ||
81 | + | ||
82 | +.popup { | ||
83 | + width: 7.5rem; | ||
84 | + background-color: #FFFFFF; | ||
85 | + height: 6.72rem; | ||
86 | + position: absolute; | ||
87 | + left: 0; | ||
88 | + top: 0; | ||
89 | + z-index: 4; | ||
90 | + overflow: hidden; | ||
91 | +} | ||
92 | + | ||
93 | +.popup_title { | ||
94 | + display: flex; | ||
95 | + justify-content: space-between; | ||
96 | + line-height: 0.92rem; | ||
97 | + padding: 0 0.41rem 0 0.37rem; | ||
98 | + height: 0.92rem; | ||
99 | +} | ||
100 | + | ||
101 | +.popup_title span { | ||
102 | + font-size: 0.28rem; | ||
103 | + color: #FEAD00; | ||
104 | +} | ||
105 | + | ||
106 | +.popup_title p { | ||
107 | + font-size: 0.24rem; | ||
108 | + color: #67C33E; | ||
109 | +} | ||
110 | + | ||
111 | +.popup_tab { | ||
112 | + height: 5.8rem; | ||
113 | + display: flex; | ||
114 | + border-top: 1px solid #E4E4E4; | ||
115 | +} | ||
116 | + | ||
117 | +.popup_nav { | ||
118 | + width: 2rem; | ||
119 | + background-color: #F7F7F7; | ||
120 | + height: 100%; | ||
121 | + border-right: 1px solid #E4E4E4; | ||
122 | + overflow-y: auto; | ||
123 | + position: relative; | ||
124 | + overflow-x: hidden; | ||
125 | +} | ||
126 | + | ||
127 | +.popup_nav ul li { | ||
128 | + font-size: 0.28rem; | ||
129 | + line-height: 0.48rem; | ||
130 | + width: 2rem; | ||
131 | + text-align: center; | ||
132 | + padding: 0.16rem 0; | ||
133 | + border-bottom: 1px solid #E4E4E4; | ||
134 | +} | ||
135 | + | ||
136 | +.popup_active { | ||
137 | + border-right: 3px solid #FFFFFF; | ||
138 | + background-color: #FFFFFF; | ||
139 | + color: #FEAD00; | ||
140 | + position: relative; | ||
141 | + width: 2.03rem; | ||
142 | +} | ||
143 | + | ||
144 | +.popup_active:before { | ||
145 | + content: ''; | ||
146 | + display: block; | ||
147 | + position: absolute; | ||
148 | + width: 0.08rem; | ||
149 | + height: 0.8rem; | ||
150 | + background-color: #FFCC00; | ||
151 | + left: 0; | ||
152 | + top: 0; | ||
153 | +} | ||
154 | + | ||
155 | + | ||
156 | +/*.popup_active:after{ | ||
157 | + content: ''; | ||
158 | + display: block; | ||
159 | + position: absolute; | ||
160 | + width: 0.08rem; | ||
161 | + height: 0.8rem; | ||
162 | + background-color: #FFFFFF; | ||
163 | + right: 0; | ||
164 | + z-index: 33; | ||
165 | + top: 0; | ||
166 | +}*/ | ||
167 | + | ||
168 | + | ||
169 | +/*弹层右侧*/ | ||
170 | + | ||
171 | +.popup_address { | ||
172 | + padding-top: 0.2rem; | ||
173 | + /*display: flex; | ||
174 | + flex-direction: column; | ||
175 | + align-items: center;*/ | ||
176 | +} | ||
177 | + | ||
178 | +.popup_address_item { | ||
179 | + display: flex; | ||
180 | + flex-direction: column; | ||
181 | + padding: 0.26rem 0.25rem 0.3rem 0.35rem; | ||
182 | + border: 1px solid #E4E4E4; | ||
183 | + width: 4.72rem; | ||
184 | + height: 1.4rem; | ||
185 | + margin-top: 0.24rem; | ||
186 | + margin-left: 0.38rem; | ||
187 | +} | ||
188 | + | ||
189 | +.popup_address_wrap a { | ||
190 | + color: #FEAD00; | ||
191 | +} | ||
192 | + | ||
193 | +.popup_address_item span { | ||
194 | + font-size: 0.3rem; | ||
195 | +} | ||
196 | + | ||
197 | +.popup_address_wrap { | ||
198 | + display: flex; | ||
199 | + justify-content: space-between; | ||
200 | +} | ||
201 | + | ||
202 | +.popup_address_wrap .icon-hdxq_icon { | ||
203 | + font-size: 0.24rem; | ||
204 | + margin-right: 0.1rem; | ||
205 | +} | ||
206 | + | ||
207 | +.popup_address_wrap p:nth-child(1) { | ||
208 | + font-size: 0.26rem; | ||
209 | +} | ||
210 | + | ||
211 | +.popup_address_wrap p:nth-child(2) { | ||
212 | + font-size: 0.24rem; | ||
213 | + display: block; | ||
214 | + border: 1px solid #FEAD00; | ||
215 | + color: #FEAD00; | ||
216 | + width: 1.49rem; | ||
217 | + height: 0.37rem; | ||
218 | + border-radius: 19rem; | ||
219 | + text-align: center; | ||
220 | + line-height: 0.37rem; | ||
221 | +} | ||
222 | + | ||
223 | + | ||
224 | +/*头部*/ | ||
225 | + | ||
226 | +.header { | ||
227 | + display: flex; | ||
228 | + align-items: center; | ||
229 | + flex-direction: column; | ||
230 | + justify-content: center; | ||
231 | + border-bottom: 1px solid #E4E4E4; | ||
232 | + padding: 0.55rem 0; | ||
233 | + | ||
234 | +} | ||
235 | +.head_tab{ | ||
236 | + width: 3.62rem; | ||
237 | + height: 0.64rem; | ||
238 | + border-radius: 0.32rem; | ||
239 | + background-color: #FFFFFF; | ||
240 | + line-height: 0.64rem; | ||
241 | + border: 1px solid #E4E4E4; | ||
242 | + line-height: 0.32rem; | ||
243 | + display: flex; | ||
244 | + align-items: center; | ||
245 | + justify-content: center; | ||
246 | + position: relative; | ||
247 | + | ||
248 | +} | ||
249 | +.head_tab .active{ | ||
250 | + background-color: #FFCC00; | ||
251 | + border-radius: 0.32rem; | ||
252 | + height: 0.64rem; | ||
253 | + line-height: 0.64rem; | ||
254 | + width: 1.8rem; | ||
255 | + z-index: 1; | ||
256 | + position: absolute; | ||
257 | + left: 0; | ||
258 | + bottom: 0; | ||
259 | + transition: 0.5s; | ||
260 | +} | ||
261 | +.head_tab span{ | ||
262 | + font-size: 0.3rem; | ||
263 | + width: 1.9rem; | ||
264 | + display: inline-block; | ||
265 | + text-align: center; | ||
266 | + z-index: 2; | ||
267 | +} | ||
268 | +.head_tab span:last-child{ | ||
269 | + margin-right: 0rem; | ||
270 | +} | ||
271 | +.head_add{ | ||
272 | + display: flex; | ||
273 | + font-size: 0.26rem; | ||
274 | + margin-top: 0.27rem; | ||
275 | +} | ||
276 | +.head_add .icon-hdxq_icon{ | ||
277 | + margin-right: 0.13rem; | ||
278 | +} | ||
279 | +/*导航列表*/ | ||
280 | + | ||
281 | +.nav_list { | ||
282 | + display: flex; | ||
283 | + font-size: 0.28rem; | ||
284 | + line-height: 0.3rem; | ||
285 | + justify-content: center; | ||
286 | + margin-top: 0.38rem; | ||
287 | +} | ||
288 | + | ||
289 | +.nav_list .active { | ||
290 | + display: inline-block; | ||
291 | + border-bottom: 3px solid #FFCC00; | ||
292 | + color: #FFCC00; | ||
293 | +} | ||
294 | + | ||
295 | +.nav_list li { | ||
296 | + margin-right: 0.6rem; | ||
297 | + padding-bottom: 0.16rem; | ||
298 | +} | ||
299 | + | ||
300 | +.nav_list li:last-child { | ||
301 | + margin-right: 0; | ||
302 | +} | ||
303 | + | ||
304 | + | ||
305 | +/*swiper*/ | ||
306 | + | ||
307 | +.banner { | ||
308 | + margin-top: 0.03rem; | ||
309 | +} | ||
310 | + | ||
311 | +.banner img { | ||
312 | + width: 100%; | ||
313 | + height: 3.48rem; | ||
314 | +} | ||
315 | + | ||
316 | +.swiper-pagination { | ||
317 | + bottom: 0; | ||
318 | + height: 1rem; | ||
319 | +} | ||
320 | + | ||
321 | +.swiper-pagination-bullet-active { | ||
322 | + background: #FFCC00; | ||
323 | +} | ||
324 | + | ||
325 | + | ||
326 | +/*主体列表*/ | ||
327 | + | ||
328 | +.content_list { | ||
329 | + padding: 0 0.32rem 0 0.36rem; | ||
330 | +} | ||
331 | + | ||
332 | +.content_item { | ||
333 | + display: flex; | ||
334 | + padding: 0.49rem 0; | ||
335 | + border-bottom: 1px solid #E4E4E4; | ||
336 | + position: relative; | ||
337 | +} | ||
338 | + | ||
339 | +.content_item:last-child { | ||
340 | + border-bottom: none; | ||
341 | +} | ||
342 | + | ||
343 | +.content_item img { | ||
344 | + width: 1.71rem; | ||
345 | + height: 1.51rem; | ||
346 | +} | ||
347 | + | ||
348 | + | ||
349 | +/*列表右侧文字*/ | ||
350 | + | ||
351 | +.content_item_text { | ||
352 | + display: flex; | ||
353 | + flex-direction: column; | ||
354 | + margin-left: 0.52rem; | ||
355 | + width: 3.5rem; | ||
356 | +} | ||
357 | + | ||
358 | +.content_item_text_h { | ||
359 | + font-size: 0.32rem; | ||
360 | + color: #333333; | ||
361 | + overflow: hidden; | ||
362 | +} | ||
363 | + | ||
364 | +.content_item_text_subh { | ||
365 | + font-size: 0.26rem; | ||
366 | + color: #666666; | ||
367 | + margin-top: 0.16rem; | ||
368 | + overflow: hidden; | ||
369 | + text-overflow: ellipsis; | ||
370 | + white-space: nowrap; | ||
371 | +} | ||
372 | + | ||
373 | +.content_item_num { | ||
374 | + display: flex; | ||
375 | + margin-top: 0.28rem; | ||
376 | + align-items: baseline; | ||
377 | +} | ||
378 | + | ||
379 | +.content_item_num_money { | ||
380 | + color: #C90103; | ||
381 | + font-size: 0.36rem; | ||
382 | + margin-right: 0.34rem; | ||
383 | +} | ||
384 | + | ||
385 | +.content_item_num_num { | ||
386 | + color: #666666; | ||
387 | + font-size: 0.24rem; | ||
388 | + white-space: nowrap; | ||
389 | +} | ||
390 | + | ||
391 | +.content_item_shop_car_icon { | ||
392 | + display: block; | ||
393 | + position: absolute; | ||
394 | + right: 0.32rem; | ||
395 | + bottom: 0.48rem; | ||
396 | + color: #FFFFFF; | ||
397 | + background-color: #FFCC00; | ||
398 | + width: 0.64rem; | ||
399 | + height: 0.64rem; | ||
400 | + display: flex; | ||
401 | + justify-content: center; | ||
402 | + align-items: center; | ||
403 | + border-radius: 50%; | ||
404 | + font-size: 0.35rem; | ||
405 | +} | ||
406 | +.choose_num{ | ||
407 | + right: 0.2rem; | ||
408 | + display: flex; | ||
409 | + display: none; | ||
410 | + position: absolute; | ||
411 | +} | ||
412 | +.choose_num .iconfont{ | ||
413 | + font-size: 0.4rem; | ||
414 | +} | ||
415 | + | ||
416 | +/*footer*/ | ||
417 | + | ||
418 | +.footer { | ||
419 | + position: fixed; | ||
420 | + bottom: 0; | ||
421 | + left: 0; | ||
422 | + width: 7.5rem; | ||
423 | + left: 50%; | ||
424 | + margin-left: -3.75rem; | ||
425 | + border-top: 1px solid #CCCCCC; | ||
426 | + background-color: #FFFFFF; | ||
427 | + font-size: 0.22rem; | ||
428 | + height: 1rem; | ||
429 | + display: flex; | ||
430 | + justify-content: space-around; | ||
431 | +} | ||
432 | + | ||
433 | +.footer_item { | ||
434 | + display: flex; | ||
435 | + flex-direction: column; | ||
436 | + justify-content: center; | ||
437 | + align-items: center; | ||
438 | + text-align: center; | ||
439 | +} | ||
440 | + | ||
441 | +.footer_item span { | ||
442 | + color: #999999; | ||
443 | +} | ||
444 | + | ||
445 | +.footer_item img { | ||
446 | + width: 0.7rem; | ||
447 | + height: 0.7rem; | ||
448 | +} | ||
449 | + | ||
450 | +.footer_active span { | ||
451 | + color: #FEAD00; | ||
452 | +} | ||
453 | + | ||
454 | + | ||
455 | +/*取货地址详情*/ | ||
456 | + | ||
457 | +.add_wrap { | ||
458 | + padding: 0.56rem 0.4rem 0; | ||
459 | +} | ||
460 | +.address_pic_list{ | ||
461 | + display: flex; | ||
462 | + flex-wrap: wrap; | ||
463 | + | ||
464 | +} | ||
465 | +.add_wrap span { | ||
466 | + font-size: 0.3rem; | ||
467 | + color: #333333; | ||
468 | +} | ||
469 | +.add_wrap_text{ | ||
470 | + border-bottom: 1px solid #E4E4E4; | ||
471 | + padding-bottom: 0.5rem; | ||
472 | +} | ||
473 | + | ||
474 | + | ||
475 | +.add_wrap img { | ||
476 | + margin-bottom: 0.3rem; | ||
477 | + width: 2rem; | ||
478 | + height: 1.5rem; | ||
479 | + margin-right: 0.22rem; | ||
480 | +} | ||
481 | +.add_wrap img:nth-child(3n){ | ||
482 | + margin-right: 0; | ||
483 | +} | ||
484 | + | ||
485 | +/*产品详情*/ | ||
486 | + | ||
487 | +.product_banner { | ||
488 | + position: relative; | ||
489 | + width: 100%rem; | ||
490 | + height: 6.72rem; | ||
491 | +} | ||
492 | + | ||
493 | +.product_banner img { | ||
494 | + width: 100%; | ||
495 | + height: 100%; | ||
496 | +} | ||
497 | + | ||
498 | +.product_banner .icon-index { | ||
499 | + position: absolute; | ||
500 | + right: 0.2rem; | ||
501 | + top: 0.2rem; | ||
502 | + color: #FFFFFF; | ||
503 | + display: block; | ||
504 | + width: 0.8rem; | ||
505 | + height: 0.8rem; | ||
506 | + background: rgba(0, 0, 0, 0.5); | ||
507 | + text-align: center; | ||
508 | + line-height: 0.8rem; | ||
509 | + border-radius: 50%; | ||
510 | + font-size: 0.4rem; | ||
511 | +} | ||
512 | +.footer_wrap .icon-icon--1{ | ||
513 | + font-size: 0.5rem; | ||
514 | +} | ||
515 | + | ||
516 | + | ||
517 | +/*产品介绍*/ | ||
518 | + | ||
519 | +.product { | ||
520 | + background-color: #F7F7F7; | ||
521 | +} | ||
522 | + | ||
523 | +.product_introduce { | ||
524 | + background-color: #FFFFFF; | ||
525 | + display: flex; | ||
526 | + flex-direction: column; | ||
527 | + padding: 0.56rem 0.32rem 0.56rem 0.4rem; | ||
528 | + width: 100%; | ||
529 | + position: relative; | ||
530 | + margin-bottom: 0.16rem; | ||
531 | +} | ||
532 | + | ||
533 | +.product_introduce_text { | ||
534 | + display: flex; | ||
535 | + width: 5.3rem; | ||
536 | + flex-direction: column; | ||
537 | +} | ||
538 | + | ||
539 | +.product_introduce_name { | ||
540 | + font-size: 0.36rem; | ||
541 | + color: #333333; | ||
542 | + width: 5.3rem; | ||
543 | + overflow: hidden; | ||
544 | + text-overflow: ellipsis; | ||
545 | + white-space: nowrap; | ||
546 | +} | ||
547 | + | ||
548 | +.product_introduce_subname { | ||
549 | + font-size: 0.26rem; | ||
550 | + color: #666666; | ||
551 | + line-height: 0.5rem; | ||
552 | + width: 5.3rem; | ||
553 | + overflow: hidden; | ||
554 | + text-overflow: ellipsis; | ||
555 | + white-space: nowrap; | ||
556 | +} | ||
557 | + | ||
558 | +.product_introduce_num { | ||
559 | + display: flex; | ||
560 | + align-items: baseline; | ||
561 | +} | ||
562 | + | ||
563 | +.product_introduce_num span { | ||
564 | + height: 0.4rem; | ||
565 | +} | ||
566 | + | ||
567 | +.product_introduce_num span:nth-child(1) { | ||
568 | + font-size: 0.3rem; | ||
569 | + color: #C90103; | ||
570 | +} | ||
571 | + | ||
572 | +.product_introduce_num span:nth-child(2) { | ||
573 | + font-size: 0.4rem; | ||
574 | + color: #C90103; | ||
575 | + margin-left: 0.05rem; | ||
576 | +} | ||
577 | + | ||
578 | +.product_introduce_num span:nth-child(3) { | ||
579 | + font-size: 0.26rem; | ||
580 | + color: #999999; | ||
581 | + margin-left: 0.2rem; | ||
582 | +} | ||
583 | + | ||
584 | + | ||
585 | +/*icon*/ | ||
586 | + | ||
587 | +.product_introduce_icon { | ||
588 | + position: absolute; | ||
589 | + width: 1.6rem; | ||
590 | + right: 0; | ||
591 | + top: 0.57rem; | ||
592 | + height: 1.5rem; | ||
593 | + border-left: 1px solid #E4E4E4; | ||
594 | + display: flex; | ||
595 | + justify-content: center; | ||
596 | + align-items: center; | ||
597 | + flex-direction: column; | ||
598 | +} | ||
599 | + | ||
600 | +.product_introduce_icon .icon-31daipingjia { | ||
601 | + font-size: 0.5rem; | ||
602 | + color: #999999; | ||
603 | +} | ||
604 | + | ||
605 | +.product_introduce_icon span { | ||
606 | + font-size: 0.22rem; | ||
607 | + color: #333333; | ||
608 | +} | ||
609 | + | ||
610 | + | ||
611 | +/*商品详情*/ | ||
612 | + | ||
613 | +.product_details { | ||
614 | + background-color: #FFFFFF; | ||
615 | + padding: 0.38rem 0.59rem 0.59rem 0.59rem; | ||
616 | +} | ||
617 | + | ||
618 | +.product_details_h { | ||
619 | + font-size: 0.26rem; | ||
620 | + color: #111111; | ||
621 | + text-align: center; | ||
622 | + margin-bottom: 0.37rem; | ||
623 | +} | ||
624 | + | ||
625 | +.product_details_pic { | ||
626 | + margin-bottom: 0.43rem; | ||
627 | +} | ||
628 | + | ||
629 | +.product_details_pic img { | ||
630 | + width: 6.28rem; | ||
631 | + height: 4.5rem; | ||
632 | + margin-right: 0.26rem; | ||
633 | + margin-top: 0.26rem; | ||
634 | +} | ||
635 | + | ||
636 | +.product_details_pic img:last-child { | ||
637 | + margin-right: 0; | ||
638 | +} | ||
639 | + | ||
640 | +.product_details p { | ||
641 | + font-size: 0.24rem; | ||
642 | + color: #666666; | ||
643 | + font-weight: Light; | ||
644 | + line-height: 0.4rem; | ||
645 | +} | ||
646 | + | ||
647 | + | ||
648 | +/*footer*/ | ||
649 | + | ||
650 | +.footer_wrap { | ||
651 | + display: flex; | ||
652 | + position: fixed; | ||
653 | + left: 0; | ||
654 | + bottom: 0; | ||
655 | + z-index: 2; | ||
656 | + left: 50%; | ||
657 | + width: 7.5rem; | ||
658 | + margin-left: -3.75rem; | ||
659 | +} | ||
660 | + | ||
661 | +.shop_car_icon { | ||
662 | + width: 1.54rem; | ||
663 | + height: 1rem; | ||
664 | + text-align: center; | ||
665 | + color: #666666; | ||
666 | + background-color: #FFFFFF; | ||
667 | + display: flex; | ||
668 | + justify-content: center; | ||
669 | + align-items: center; | ||
670 | + position: relative; | ||
671 | +} | ||
672 | + | ||
673 | +.shop_car_icon p { | ||
674 | + position: absolute; | ||
675 | + display: block; | ||
676 | + font-size: 0.24rem; | ||
677 | + color: #FFFFFF; | ||
678 | + background-color: #C90103; | ||
679 | + width: 0.28rem; | ||
680 | + height: 0.28rem; | ||
681 | + border-radius: 50%; | ||
682 | + left: 0.89rem; | ||
683 | + top: 0.15rem; | ||
684 | +} | ||
685 | + | ||
686 | +.choose_num_control{ | ||
687 | + display: flex; | ||
688 | + align-items: center; | ||
689 | +} | ||
690 | + | ||
691 | +.num_reduce ,.num_add{ | ||
692 | + | ||
693 | + border-radius: 50%; | ||
694 | + display: flex; | ||
695 | + align-items: center; | ||
696 | + justify-content: center; | ||
697 | + font-size: 0.3rem; | ||
698 | + text-align: center; | ||
699 | + line-height: 0.42rem; | ||
700 | + | ||
701 | +} | ||
702 | +.num_reduce { | ||
703 | + border: 1px solid #CCCCCC; | ||
704 | + color: #CCCCCC; | ||
705 | + width: 0.4rem; | ||
706 | + height: 0.4rem; | ||
707 | +} | ||
708 | +.num_add{ | ||
709 | + background-color: #FFCC00; | ||
710 | + color: #FFFFFF; | ||
711 | + width: 0.42rem; | ||
712 | + height: 0.42rem; | ||
713 | +} | ||
714 | + | ||
715 | +.product_introduce_footer { | ||
716 | + width: 5.97rem; | ||
717 | + height: 1rem; | ||
718 | + text-align: center; | ||
719 | + line-height: 1rem; | ||
720 | + font-size: 0.31rem; | ||
721 | + color: #333333; | ||
722 | + background-color: #FFCC00; | ||
723 | +} |
css/init.css
0 → 100644
1 | +h1, | ||
2 | +h2, | ||
3 | +h3, | ||
4 | +h4, | ||
5 | +h5, | ||
6 | +h6, | ||
7 | +hr, | ||
8 | +p, | ||
9 | +blockquote, | ||
10 | +dl, | ||
11 | +dt, | ||
12 | +dd, | ||
13 | +ul, | ||
14 | +ol, | ||
15 | +li, | ||
16 | +pre, | ||
17 | +form, | ||
18 | +fieldset, | ||
19 | +legend, | ||
20 | +button, | ||
21 | +input, | ||
22 | +textarea, | ||
23 | +th, | ||
24 | +td { | ||
25 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
26 | + -webkit-tap-highlight-color: transparent; | ||
27 | + margin: 0; | ||
28 | + padding: 0; | ||
29 | + font-family: PingFang-SC-Medium; | ||
30 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
31 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
32 | + -webkit-tap-highlight-color: transparent; | ||
33 | + -webkit-appearance: none; | ||
34 | +} | ||
35 | + | ||
36 | +a { | ||
37 | + text-decoration: none; | ||
38 | + outline: none; | ||
39 | + color: white; | ||
40 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
41 | +} | ||
42 | + | ||
43 | +html, | ||
44 | +body { | ||
45 | + position: relative; | ||
46 | + width: 100%; | ||
47 | + height: 100%; | ||
48 | + padding: 0; | ||
49 | + margin: 0; | ||
50 | + background-color: RGBA(245, 246, 250, 1); | ||
51 | +} | ||
52 | + | ||
53 | +img { | ||
54 | + display: block; | ||
55 | + width: 100%; | ||
56 | + height: 100%; | ||
57 | +} | ||
58 | + | ||
59 | +div { | ||
60 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
61 | + -webkit-tap-highlight-color: transparent; | ||
62 | + box-sizing: border-box; | ||
63 | +} | ||
64 | + | ||
65 | +li { | ||
66 | + list-style: none; | ||
67 | +} | ||
68 | + | ||
69 | +li img { | ||
70 | + display: block; | ||
71 | + width: 100%; | ||
72 | + height: 100%; | ||
73 | +} | ||
74 | + | ||
75 | +input[type="button"], | ||
76 | +input[type="submit"], | ||
77 | +input[type="reset"] { | ||
78 | + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
79 | + -webkit-tap-highlight-color: transparent; | ||
80 | + -webkit-appearance: none; | ||
81 | + outline: none !important; | ||
82 | +} | ||
83 | + | ||
84 | +textarea { | ||
85 | + -webkit-appearance: none; | ||
86 | + outline: none !important; | ||
87 | +} | ||
88 | + | ||
89 | + | ||
90 | + | ||
91 | + | ||
92 | +.nomore{ | ||
93 | + width: 3rem; | ||
94 | + height: 3rem; | ||
95 | + margin: 0 auto; | ||
96 | + margin-top: 3rem; | ||
97 | +} | ||
98 | +.nomore_font{ | ||
99 | + | ||
100 | +font-size:0.26rem; | ||
101 | +font-family:PingFang-SC-Medium; | ||
102 | +color:RGBA(102, 102, 102, 1); | ||
103 | +line-height:0.7rem; | ||
104 | +text-align: center; | ||
105 | +} | ||
106 | + | ||
107 | +span{ | ||
108 | + margin: 0rem; | ||
109 | + padding: 0rem; | ||
110 | +} | ||
111 | + | ||
112 | +.container{ | ||
113 | + width: 7.5rem; | ||
114 | + height: 100%; | ||
115 | + margin: 0 auto; | ||
116 | + box-sizing: border-box; | ||
117 | + overflow-y: scroll; | ||
118 | + background-color: #FFFFFF; | ||
119 | +} | ||
120 | + | ||
121 | +.foot_cartnum{ | ||
122 | + position: absolute; | ||
123 | + width: 0.36rem; | ||
124 | + height: 0.36rem; | ||
125 | + background-color: #FF4800; | ||
126 | + right: 3.3rem; | ||
127 | + top: 0rem; | ||
128 | + border-radius: 50%; | ||
129 | + color: #FFFFFF; | ||
130 | + font-size: 0.2rem; | ||
131 | + text-align: center; | ||
132 | + line-height: 0.36rem; | ||
133 | +} | ||
134 | +[v-cloak]{ | ||
135 | + display: none; | ||
136 | +} |
css/jquery-weui.css
0 → 100644
1 | +/** | ||
2 | +* jQuery WeUI V1.2.1 | ||
3 | +* By 言川 | ||
4 | +* http://lihongxun945.github.io/jquery-weui/ | ||
5 | + */ | ||
6 | +.preloader { | ||
7 | + width: 20px; | ||
8 | + height: 20px; | ||
9 | + -webkit-transform-origin: 50%; | ||
10 | + transform-origin: 50%; | ||
11 | + -webkit-animation: preloader-spin 1s steps(12, end) infinite; | ||
12 | + animation: preloader-spin 1s steps(12, end) infinite; | ||
13 | +} | ||
14 | +.preloader:after { | ||
15 | + display: block; | ||
16 | + width: 100%; | ||
17 | + height: 100%; | ||
18 | + content: ""; | ||
19 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); | ||
20 | + background-repeat: no-repeat; | ||
21 | + background-position: 50%; | ||
22 | + background-size: 100%; | ||
23 | +} | ||
24 | +@-webkit-keyframes preloader-spin { | ||
25 | + 100% { | ||
26 | + -webkit-transform: rotate(360deg); | ||
27 | + transform: rotate(360deg); | ||
28 | + } | ||
29 | +} | ||
30 | +@keyframes preloader-spin { | ||
31 | + 100% { | ||
32 | + -webkit-transform: rotate(360deg); | ||
33 | + transform: rotate(360deg); | ||
34 | + } | ||
35 | +} | ||
36 | +/* | ||
37 | +.hairline(@position, @color) when (@position = top) { | ||
38 | + border-top: 1px solid @color; | ||
39 | +} | ||
40 | +.hairline(@position, @color) when (@position = left) { | ||
41 | + border-left: 1px solid @color; | ||
42 | +} | ||
43 | +.hairline(@position, @color) when (@position = bottom) { | ||
44 | + border-bottom: 1px solid @color; | ||
45 | +} | ||
46 | +.hairline(@position, @color) when (@position = right) { | ||
47 | + border-right: 1px solid @color; | ||
48 | +} | ||
49 | +// For right and bottom | ||
50 | +.hairline-remove(@position) when not (@position = left) and not (@position = top) { | ||
51 | + border-left: 0; | ||
52 | + border-bottom: 0; | ||
53 | +} | ||
54 | +// For left and top | ||
55 | +.hairline-remove(@position) when not (@position = right) and not (@position = bottom) { | ||
56 | + border-right: 0; | ||
57 | + border-top: 0; | ||
58 | +} | ||
59 | +// For right and bottom | ||
60 | +.hairline-color(@position, @color) when not (@position = left) and not (@position = top) { | ||
61 | + border-right-color: @color; | ||
62 | + border-bottom-color: @color; | ||
63 | +} | ||
64 | +// For left and top | ||
65 | +.hairline-color(@position, @color) when not (@position = right) and not (@position = bottom) { | ||
66 | + border-left-color: @color; | ||
67 | + border-top-color: @color; | ||
68 | +} | ||
69 | +*/ | ||
70 | +label > * { | ||
71 | + pointer-events: none; | ||
72 | +} | ||
73 | +html { | ||
74 | + font-size: 20px; | ||
75 | +} | ||
76 | +body { | ||
77 | + font-size: 16px; | ||
78 | +} | ||
79 | +@media only screen and (min-width: 400px) { | ||
80 | + html { | ||
81 | + font-size: 21.33333333px !important; | ||
82 | + } | ||
83 | +} | ||
84 | +@media only screen and (min-width: 414px) { | ||
85 | + html { | ||
86 | + font-size: 22.08px !important; | ||
87 | + } | ||
88 | +} | ||
89 | +@media only screen and (min-width: 480px) { | ||
90 | + html { | ||
91 | + font-size: 25.6px !important; | ||
92 | + } | ||
93 | +} | ||
94 | +.weui_navbar { | ||
95 | + z-index: 10; | ||
96 | +} | ||
97 | +.weui-popup-overlay, | ||
98 | +.weui-popup-container { | ||
99 | + z-index: 1000; | ||
100 | +} | ||
101 | +.weui-mask { | ||
102 | + z-index: 1000; | ||
103 | +} | ||
104 | +/* === Grid === */ | ||
105 | +.weui-row { | ||
106 | + display: -webkit-box; | ||
107 | + display: -ms-flexbox; | ||
108 | + display: flex; | ||
109 | + -webkit-box-pack: justify; | ||
110 | + -ms-flex-pack: justify; | ||
111 | + justify-content: space-between; | ||
112 | + -webkit-box-lines: multiple; | ||
113 | + -moz-box-lines: multiple; | ||
114 | + -ms-flex-wrap: wrap; | ||
115 | + flex-wrap: wrap; | ||
116 | + -webkit-box-align: start; | ||
117 | + -ms-flex-align: start; | ||
118 | + align-items: flex-start; | ||
119 | +} | ||
120 | +.weui-row > [class*="col-"] { | ||
121 | + box-sizing: border-box; | ||
122 | +} | ||
123 | +.weui-row .col-auto { | ||
124 | + width: 100%; | ||
125 | +} | ||
126 | +.weui-row .weui-col-100 { | ||
127 | + width: 100%; | ||
128 | + width: calc((100% - 15px*0) / 1); | ||
129 | +} | ||
130 | +.weui-row.weui-no-gutter .weui-col-100 { | ||
131 | + width: 100%; | ||
132 | +} | ||
133 | +.weui-row .weui-col-95 { | ||
134 | + width: 95%; | ||
135 | + width: calc((100% - 15px*0.05263157894736836) / 1.0526315789473684); | ||
136 | +} | ||
137 | +.weui-row.weui-no-gutter .weui-col-95 { | ||
138 | + width: 95%; | ||
139 | +} | ||
140 | +.weui-row .weui-col-90 { | ||
141 | + width: 90%; | ||
142 | + width: calc((100% - 15px*0.11111111111111116) / 1.1111111111111112); | ||
143 | +} | ||
144 | +.weui-row.weui-no-gutter .weui-col-90 { | ||
145 | + width: 90%; | ||
146 | +} | ||
147 | +.weui-row .weui-col-85 { | ||
148 | + width: 85%; | ||
149 | + width: calc((100% - 15px*0.17647058823529416) / 1.1764705882352942); | ||
150 | +} | ||
151 | +.weui-row.weui-no-gutter .weui-col-85 { | ||
152 | + width: 85%; | ||
153 | +} | ||
154 | +.weui-row .weui-col-80 { | ||
155 | + width: 80%; | ||
156 | + width: calc((100% - 15px*0.25) / 1.25); | ||
157 | +} | ||
158 | +.weui-row.weui-no-gutter .weui-col-80 { | ||
159 | + width: 80%; | ||
160 | +} | ||
161 | +.weui-row .weui-col-75 { | ||
162 | + width: 75%; | ||
163 | + width: calc((100% - 15px*0.33333333333333326) / 1.3333333333333333); | ||
164 | +} | ||
165 | +.weui-row.weui-no-gutter .weui-col-75 { | ||
166 | + width: 75%; | ||
167 | +} | ||
168 | +.weui-row .weui-col-66 { | ||
169 | + width: 66.66666666666666%; | ||
170 | + width: calc((100% - 15px*0.5000000000000002) / 1.5000000000000002); | ||
171 | +} | ||
172 | +.weui-row.weui-no-gutter .weui-col-66 { | ||
173 | + width: 66.66666666666666%; | ||
174 | +} | ||
175 | +.weui-row .weui-col-60 { | ||
176 | + width: 60%; | ||
177 | + width: calc((100% - 15px*0.6666666666666667) / 1.6666666666666667); | ||
178 | +} | ||
179 | +.weui-row.weui-no-gutter .weui-col-60 { | ||
180 | + width: 60%; | ||
181 | +} | ||
182 | +.weui-row .weui-col-50 { | ||
183 | + width: 50%; | ||
184 | + width: calc((100% - 15px*1) / 2); | ||
185 | +} | ||
186 | +.weui-row.weui-no-gutter .weui-col-50 { | ||
187 | + width: 50%; | ||
188 | +} | ||
189 | +.weui-row .weui-col-40 { | ||
190 | + width: 40%; | ||
191 | + width: calc((100% - 15px*1.5) / 2.5); | ||
192 | +} | ||
193 | +.weui-row.weui-no-gutter .weui-col-40 { | ||
194 | + width: 40%; | ||
195 | +} | ||
196 | +.weui-row .weui-col-33 { | ||
197 | + width: 33.333333333333336%; | ||
198 | + width: calc((100% - 15px*2) / 3); | ||
199 | +} | ||
200 | +.weui-row.weui-no-gutter .weui-col-33 { | ||
201 | + width: 33.333333333333336%; | ||
202 | +} | ||
203 | +.weui-row .weui-col-25 { | ||
204 | + width: 25%; | ||
205 | + width: calc((100% - 15px*3) / 4); | ||
206 | +} | ||
207 | +.weui-row.weui-no-gutter .weui-col-25 { | ||
208 | + width: 25%; | ||
209 | +} | ||
210 | +.weui-row .weui-col-20 { | ||
211 | + width: 20%; | ||
212 | + width: calc((100% - 15px*4) / 5); | ||
213 | +} | ||
214 | +.weui-row.weui-no-gutter .weui-col-20 { | ||
215 | + width: 20%; | ||
216 | +} | ||
217 | +.weui-row .weui-col-15 { | ||
218 | + width: 15%; | ||
219 | + width: calc((100% - 15px*5.666666666666667) / 6.666666666666667); | ||
220 | +} | ||
221 | +.weui-row.weui-no-gutter .weui-col-15 { | ||
222 | + width: 15%; | ||
223 | +} | ||
224 | +.weui-row .weui-col-10 { | ||
225 | + width: 10%; | ||
226 | + width: calc((100% - 15px*9) / 10); | ||
227 | +} | ||
228 | +.weui-row.weui-no-gutter .weui-col-10 { | ||
229 | + width: 10%; | ||
230 | +} | ||
231 | +.weui-row .weui-col-5 { | ||
232 | + width: 5%; | ||
233 | + width: calc((100% - 15px*19) / 20); | ||
234 | +} | ||
235 | +.weui-row.weui-no-gutter .weui-col-5 { | ||
236 | + width: 5%; | ||
237 | +} | ||
238 | +.weui-row .weui-col-auto:nth-last-child(1), | ||
239 | +.weui-row .weui-col-auto:nth-last-child(1) ~ .weui-col-auto { | ||
240 | + width: 100%; | ||
241 | + width: calc((100% - 15px*0) / 1); | ||
242 | +} | ||
243 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(1), | ||
244 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(1) ~ .weui-col-auto { | ||
245 | + width: 100%; | ||
246 | +} | ||
247 | +.weui-row .weui-col-auto:nth-last-child(2), | ||
248 | +.weui-row .weui-col-auto:nth-last-child(2) ~ .weui-col-auto { | ||
249 | + width: 50%; | ||
250 | + width: calc((100% - 15px*1) / 2); | ||
251 | +} | ||
252 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(2), | ||
253 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(2) ~ .weui-col-auto { | ||
254 | + width: 50%; | ||
255 | +} | ||
256 | +.weui-row .weui-col-auto:nth-last-child(3), | ||
257 | +.weui-row .weui-col-auto:nth-last-child(3) ~ .weui-col-auto { | ||
258 | + width: 33.33333333%; | ||
259 | + width: calc((100% - 15px*2) / 3); | ||
260 | +} | ||
261 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(3), | ||
262 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(3) ~ .weui-col-auto { | ||
263 | + width: 33.33333333%; | ||
264 | +} | ||
265 | +.weui-row .weui-col-auto:nth-last-child(4), | ||
266 | +.weui-row .weui-col-auto:nth-last-child(4) ~ .weui-col-auto { | ||
267 | + width: 25%; | ||
268 | + width: calc((100% - 15px*3) / 4); | ||
269 | +} | ||
270 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(4), | ||
271 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(4) ~ .weui-col-auto { | ||
272 | + width: 25%; | ||
273 | +} | ||
274 | +.weui-row .weui-col-auto:nth-last-child(5), | ||
275 | +.weui-row .weui-col-auto:nth-last-child(5) ~ .weui-col-auto { | ||
276 | + width: 20%; | ||
277 | + width: calc((100% - 15px*4) / 5); | ||
278 | +} | ||
279 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(5), | ||
280 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(5) ~ .weui-col-auto { | ||
281 | + width: 20%; | ||
282 | +} | ||
283 | +.weui-row .weui-col-auto:nth-last-child(6), | ||
284 | +.weui-row .weui-col-auto:nth-last-child(6) ~ .weui-col-auto { | ||
285 | + width: 16.66666667%; | ||
286 | + width: calc((100% - 15px*5) / 6); | ||
287 | +} | ||
288 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(6), | ||
289 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(6) ~ .weui-col-auto { | ||
290 | + width: 16.66666667%; | ||
291 | +} | ||
292 | +.weui-row .weui-col-auto:nth-last-child(7), | ||
293 | +.weui-row .weui-col-auto:nth-last-child(7) ~ .weui-col-auto { | ||
294 | + width: 14.28571429%; | ||
295 | + width: calc((100% - 15px*6) / 7); | ||
296 | +} | ||
297 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(7), | ||
298 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(7) ~ .weui-col-auto { | ||
299 | + width: 14.28571429%; | ||
300 | +} | ||
301 | +.weui-row .weui-col-auto:nth-last-child(8), | ||
302 | +.weui-row .weui-col-auto:nth-last-child(8) ~ .weui-col-auto { | ||
303 | + width: 12.5%; | ||
304 | + width: calc((100% - 15px*7) / 8); | ||
305 | +} | ||
306 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(8), | ||
307 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(8) ~ .weui-col-auto { | ||
308 | + width: 12.5%; | ||
309 | +} | ||
310 | +.weui-row .weui-col-auto:nth-last-child(9), | ||
311 | +.weui-row .weui-col-auto:nth-last-child(9) ~ .weui-col-auto { | ||
312 | + width: 11.11111111%; | ||
313 | + width: calc((100% - 15px*8) / 9); | ||
314 | +} | ||
315 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(9), | ||
316 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(9) ~ .weui-col-auto { | ||
317 | + width: 11.11111111%; | ||
318 | +} | ||
319 | +.weui-row .weui-col-auto:nth-last-child(10), | ||
320 | +.weui-row .weui-col-auto:nth-last-child(10) ~ .weui-col-auto { | ||
321 | + width: 10%; | ||
322 | + width: calc((100% - 15px*9) / 10); | ||
323 | +} | ||
324 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(10), | ||
325 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(10) ~ .weui-col-auto { | ||
326 | + width: 10%; | ||
327 | +} | ||
328 | +.weui-row .weui-col-auto:nth-last-child(11), | ||
329 | +.weui-row .weui-col-auto:nth-last-child(11) ~ .weui-col-auto { | ||
330 | + width: 9.09090909%; | ||
331 | + width: calc((100% - 15px*10) / 11); | ||
332 | +} | ||
333 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(11), | ||
334 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(11) ~ .weui-col-auto { | ||
335 | + width: 9.09090909%; | ||
336 | +} | ||
337 | +.weui-row .weui-col-auto:nth-last-child(12), | ||
338 | +.weui-row .weui-col-auto:nth-last-child(12) ~ .weui-col-auto { | ||
339 | + width: 8.33333333%; | ||
340 | + width: calc((100% - 15px*11) / 12); | ||
341 | +} | ||
342 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(12), | ||
343 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(12) ~ .weui-col-auto { | ||
344 | + width: 8.33333333%; | ||
345 | +} | ||
346 | +.weui-row .weui-col-auto:nth-last-child(13), | ||
347 | +.weui-row .weui-col-auto:nth-last-child(13) ~ .weui-col-auto { | ||
348 | + width: 7.69230769%; | ||
349 | + width: calc((100% - 15px*12) / 13); | ||
350 | +} | ||
351 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(13), | ||
352 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(13) ~ .weui-col-auto { | ||
353 | + width: 7.69230769%; | ||
354 | +} | ||
355 | +.weui-row .weui-col-auto:nth-last-child(14), | ||
356 | +.weui-row .weui-col-auto:nth-last-child(14) ~ .weui-col-auto { | ||
357 | + width: 7.14285714%; | ||
358 | + width: calc((100% - 15px*13) / 14); | ||
359 | +} | ||
360 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(14), | ||
361 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(14) ~ .weui-col-auto { | ||
362 | + width: 7.14285714%; | ||
363 | +} | ||
364 | +.weui-row .weui-col-auto:nth-last-child(15), | ||
365 | +.weui-row .weui-col-auto:nth-last-child(15) ~ .weui-col-auto { | ||
366 | + width: 6.66666667%; | ||
367 | + width: calc((100% - 15px*14) / 15); | ||
368 | +} | ||
369 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(15), | ||
370 | +.weui-row.weui-no-gutter .weui-col-auto:nth-last-child(15) ~ .weui-col-auto { | ||
371 | + width: 6.66666667%; | ||
372 | +} | ||
373 | +@media all and (min-width: 768px) { | ||
374 | + .row .tablet-100 { | ||
375 | + width: 100%; | ||
376 | + width: calc((100% - 15px*0) / 1); | ||
377 | + } | ||
378 | + .row.no-gutter .tablet-100 { | ||
379 | + width: 100%; | ||
380 | + } | ||
381 | + .row .tablet-95 { | ||
382 | + width: 95%; | ||
383 | + width: calc((100% - 15px*0.05263157894736836) / 1.0526315789473684); | ||
384 | + } | ||
385 | + .row.no-gutter .tablet-95 { | ||
386 | + width: 95%; | ||
387 | + } | ||
388 | + .row .tablet-90 { | ||
389 | + width: 90%; | ||
390 | + width: calc((100% - 15px*0.11111111111111116) / 1.1111111111111112); | ||
391 | + } | ||
392 | + .row.no-gutter .tablet-90 { | ||
393 | + width: 90%; | ||
394 | + } | ||
395 | + .row .tablet-85 { | ||
396 | + width: 85%; | ||
397 | + width: calc((100% - 15px*0.17647058823529416) / 1.1764705882352942); | ||
398 | + } | ||
399 | + .row.no-gutter .tablet-85 { | ||
400 | + width: 85%; | ||
401 | + } | ||
402 | + .row .tablet-80 { | ||
403 | + width: 80%; | ||
404 | + width: calc((100% - 15px*0.25) / 1.25); | ||
405 | + } | ||
406 | + .row.no-gutter .tablet-80 { | ||
407 | + width: 80%; | ||
408 | + } | ||
409 | + .row .tablet-75 { | ||
410 | + width: 75%; | ||
411 | + width: calc((100% - 15px*0.33333333333333326) / 1.3333333333333333); | ||
412 | + } | ||
413 | + .row.no-gutter .tablet-75 { | ||
414 | + width: 75%; | ||
415 | + } | ||
416 | + .row .tablet-66 { | ||
417 | + width: 66.66666666666666%; | ||
418 | + width: calc((100% - 15px*0.5000000000000002) / 1.5000000000000002); | ||
419 | + } | ||
420 | + .row.no-gutter .tablet-66 { | ||
421 | + width: 66.66666666666666%; | ||
422 | + } | ||
423 | + .row .tablet-60 { | ||
424 | + width: 60%; | ||
425 | + width: calc((100% - 15px*0.6666666666666667) / 1.6666666666666667); | ||
426 | + } | ||
427 | + .row.no-gutter .tablet-60 { | ||
428 | + width: 60%; | ||
429 | + } | ||
430 | + .row .tablet-50 { | ||
431 | + width: 50%; | ||
432 | + width: calc((100% - 15px*1) / 2); | ||
433 | + } | ||
434 | + .row.no-gutter .tablet-50 { | ||
435 | + width: 50%; | ||
436 | + } | ||
437 | + .row .tablet-40 { | ||
438 | + width: 40%; | ||
439 | + width: calc((100% - 15px*1.5) / 2.5); | ||
440 | + } | ||
441 | + .row.no-gutter .tablet-40 { | ||
442 | + width: 40%; | ||
443 | + } | ||
444 | + .row .tablet-33 { | ||
445 | + width: 33.333333333333336%; | ||
446 | + width: calc((100% - 15px*2) / 3); | ||
447 | + } | ||
448 | + .row.no-gutter .tablet-33 { | ||
449 | + width: 33.333333333333336%; | ||
450 | + } | ||
451 | + .row .tablet-25 { | ||
452 | + width: 25%; | ||
453 | + width: calc((100% - 15px*3) / 4); | ||
454 | + } | ||
455 | + .row.no-gutter .tablet-25 { | ||
456 | + width: 25%; | ||
457 | + } | ||
458 | + .row .tablet-20 { | ||
459 | + width: 20%; | ||
460 | + width: calc((100% - 15px*4) / 5); | ||
461 | + } | ||
462 | + .row.no-gutter .tablet-20 { | ||
463 | + width: 20%; | ||
464 | + } | ||
465 | + .row .tablet-15 { | ||
466 | + width: 15%; | ||
467 | + width: calc((100% - 15px*5.666666666666667) / 6.666666666666667); | ||
468 | + } | ||
469 | + .row.no-gutter .tablet-15 { | ||
470 | + width: 15%; | ||
471 | + } | ||
472 | + .row .tablet-10 { | ||
473 | + width: 10%; | ||
474 | + width: calc((100% - 15px*9) / 10); | ||
475 | + } | ||
476 | + .row.no-gutter .tablet-10 { | ||
477 | + width: 10%; | ||
478 | + } | ||
479 | + .row .tablet-5 { | ||
480 | + width: 5%; | ||
481 | + width: calc((100% - 15px*19) / 20); | ||
482 | + } | ||
483 | + .row.no-gutter .tablet-5 { | ||
484 | + width: 5%; | ||
485 | + } | ||
486 | + .row .tablet-auto:nth-last-child(1), | ||
487 | + .row .tablet-auto:nth-last-child(1) ~ .col-auto { | ||
488 | + width: 100%; | ||
489 | + width: calc((100% - 15px*0) / 1); | ||
490 | + } | ||
491 | + .row.no-gutter .tablet-auto:nth-last-child(1), | ||
492 | + .row.no-gutter .tablet-auto:nth-last-child(1) ~ .tablet-auto { | ||
493 | + width: 100%; | ||
494 | + } | ||
495 | + .row .tablet-auto:nth-last-child(2), | ||
496 | + .row .tablet-auto:nth-last-child(2) ~ .col-auto { | ||
497 | + width: 50%; | ||
498 | + width: calc((100% - 15px*1) / 2); | ||
499 | + } | ||
500 | + .row.no-gutter .tablet-auto:nth-last-child(2), | ||
501 | + .row.no-gutter .tablet-auto:nth-last-child(2) ~ .tablet-auto { | ||
502 | + width: 50%; | ||
503 | + } | ||
504 | + .row .tablet-auto:nth-last-child(3), | ||
505 | + .row .tablet-auto:nth-last-child(3) ~ .col-auto { | ||
506 | + width: 33.33333333%; | ||
507 | + width: calc((100% - 15px*2) / 3); | ||
508 | + } | ||
509 | + .row.no-gutter .tablet-auto:nth-last-child(3), | ||
510 | + .row.no-gutter .tablet-auto:nth-last-child(3) ~ .tablet-auto { | ||
511 | + width: 33.33333333%; | ||
512 | + } | ||
513 | + .row .tablet-auto:nth-last-child(4), | ||
514 | + .row .tablet-auto:nth-last-child(4) ~ .col-auto { | ||
515 | + width: 25%; | ||
516 | + width: calc((100% - 15px*3) / 4); | ||
517 | + } | ||
518 | + .row.no-gutter .tablet-auto:nth-last-child(4), | ||
519 | + .row.no-gutter .tablet-auto:nth-last-child(4) ~ .tablet-auto { | ||
520 | + width: 25%; | ||
521 | + } | ||
522 | + .row .tablet-auto:nth-last-child(5), | ||
523 | + .row .tablet-auto:nth-last-child(5) ~ .col-auto { | ||
524 | + width: 20%; | ||
525 | + width: calc((100% - 15px*4) / 5); | ||
526 | + } | ||
527 | + .row.no-gutter .tablet-auto:nth-last-child(5), | ||
528 | + .row.no-gutter .tablet-auto:nth-last-child(5) ~ .tablet-auto { | ||
529 | + width: 20%; | ||
530 | + } | ||
531 | + .row .tablet-auto:nth-last-child(6), | ||
532 | + .row .tablet-auto:nth-last-child(6) ~ .col-auto { | ||
533 | + width: 16.66666667%; | ||
534 | + width: calc((100% - 15px*5) / 6); | ||
535 | + } | ||
536 | + .row.no-gutter .tablet-auto:nth-last-child(6), | ||
537 | + .row.no-gutter .tablet-auto:nth-last-child(6) ~ .tablet-auto { | ||
538 | + width: 16.66666667%; | ||
539 | + } | ||
540 | + .row .tablet-auto:nth-last-child(7), | ||
541 | + .row .tablet-auto:nth-last-child(7) ~ .col-auto { | ||
542 | + width: 14.28571429%; | ||
543 | + width: calc((100% - 15px*6) / 7); | ||
544 | + } | ||
545 | + .row.no-gutter .tablet-auto:nth-last-child(7), | ||
546 | + .row.no-gutter .tablet-auto:nth-last-child(7) ~ .tablet-auto { | ||
547 | + width: 14.28571429%; | ||
548 | + } | ||
549 | + .row .tablet-auto:nth-last-child(8), | ||
550 | + .row .tablet-auto:nth-last-child(8) ~ .col-auto { | ||
551 | + width: 12.5%; | ||
552 | + width: calc((100% - 15px*7) / 8); | ||
553 | + } | ||
554 | + .row.no-gutter .tablet-auto:nth-last-child(8), | ||
555 | + .row.no-gutter .tablet-auto:nth-last-child(8) ~ .tablet-auto { | ||
556 | + width: 12.5%; | ||
557 | + } | ||
558 | + .row .tablet-auto:nth-last-child(9), | ||
559 | + .row .tablet-auto:nth-last-child(9) ~ .col-auto { | ||
560 | + width: 11.11111111%; | ||
561 | + width: calc((100% - 15px*8) / 9); | ||
562 | + } | ||
563 | + .row.no-gutter .tablet-auto:nth-last-child(9), | ||
564 | + .row.no-gutter .tablet-auto:nth-last-child(9) ~ .tablet-auto { | ||
565 | + width: 11.11111111%; | ||
566 | + } | ||
567 | + .row .tablet-auto:nth-last-child(10), | ||
568 | + .row .tablet-auto:nth-last-child(10) ~ .col-auto { | ||
569 | + width: 10%; | ||
570 | + width: calc((100% - 15px*9) / 10); | ||
571 | + } | ||
572 | + .row.no-gutter .tablet-auto:nth-last-child(10), | ||
573 | + .row.no-gutter .tablet-auto:nth-last-child(10) ~ .tablet-auto { | ||
574 | + width: 10%; | ||
575 | + } | ||
576 | + .row .tablet-auto:nth-last-child(11), | ||
577 | + .row .tablet-auto:nth-last-child(11) ~ .col-auto { | ||
578 | + width: 9.09090909%; | ||
579 | + width: calc((100% - 15px*10) / 11); | ||
580 | + } | ||
581 | + .row.no-gutter .tablet-auto:nth-last-child(11), | ||
582 | + .row.no-gutter .tablet-auto:nth-last-child(11) ~ .tablet-auto { | ||
583 | + width: 9.09090909%; | ||
584 | + } | ||
585 | + .row .tablet-auto:nth-last-child(12), | ||
586 | + .row .tablet-auto:nth-last-child(12) ~ .col-auto { | ||
587 | + width: 8.33333333%; | ||
588 | + width: calc((100% - 15px*11) / 12); | ||
589 | + } | ||
590 | + .row.no-gutter .tablet-auto:nth-last-child(12), | ||
591 | + .row.no-gutter .tablet-auto:nth-last-child(12) ~ .tablet-auto { | ||
592 | + width: 8.33333333%; | ||
593 | + } | ||
594 | + .row .tablet-auto:nth-last-child(13), | ||
595 | + .row .tablet-auto:nth-last-child(13) ~ .col-auto { | ||
596 | + width: 7.69230769%; | ||
597 | + width: calc((100% - 15px*12) / 13); | ||
598 | + } | ||
599 | + .row.no-gutter .tablet-auto:nth-last-child(13), | ||
600 | + .row.no-gutter .tablet-auto:nth-last-child(13) ~ .tablet-auto { | ||
601 | + width: 7.69230769%; | ||
602 | + } | ||
603 | + .row .tablet-auto:nth-last-child(14), | ||
604 | + .row .tablet-auto:nth-last-child(14) ~ .col-auto { | ||
605 | + width: 7.14285714%; | ||
606 | + width: calc((100% - 15px*13) / 14); | ||
607 | + } | ||
608 | + .row.no-gutter .tablet-auto:nth-last-child(14), | ||
609 | + .row.no-gutter .tablet-auto:nth-last-child(14) ~ .tablet-auto { | ||
610 | + width: 7.14285714%; | ||
611 | + } | ||
612 | + .row .tablet-auto:nth-last-child(15), | ||
613 | + .row .tablet-auto:nth-last-child(15) ~ .col-auto { | ||
614 | + width: 6.66666667%; | ||
615 | + width: calc((100% - 15px*14) / 15); | ||
616 | + } | ||
617 | + .row.no-gutter .tablet-auto:nth-last-child(15), | ||
618 | + .row.no-gutter .tablet-auto:nth-last-child(15) ~ .tablet-auto { | ||
619 | + width: 6.66666667%; | ||
620 | + } | ||
621 | +} | ||
622 | +.weui-cell__hd img { | ||
623 | + display: block; | ||
624 | + margin-right: 5px; | ||
625 | +} | ||
626 | +.weui-cell_swiped .weui-cell__bd { | ||
627 | + -webkit-transition: -webkit-transform .3s; | ||
628 | + transition: -webkit-transform .3s; | ||
629 | + transition: transform .3s; | ||
630 | + transition: transform .3s, -webkit-transform .3s; | ||
631 | +} | ||
632 | +.swipeout-touching .weui-cell__bd { | ||
633 | + -webkit-transition: none; | ||
634 | + transition: none; | ||
635 | +} | ||
636 | +.weui-dialog, | ||
637 | +.weui-toast { | ||
638 | + -webkit-transition-duration: .2s; | ||
639 | + transition-duration: .2s; | ||
640 | + opacity: 0; | ||
641 | + -webkit-transform: translate(-50%, -50%); | ||
642 | + transform: translate(-50%, -50%); | ||
643 | + -webkit-transform-origin: 0 0; | ||
644 | + transform-origin: 0 0; | ||
645 | + visibility: hidden; | ||
646 | + margin: 0; | ||
647 | + top: 45%; | ||
648 | + z-index: 2000; | ||
649 | +} | ||
650 | +.weui-dialog .weui-dialog__btn.default, | ||
651 | +.weui-toast .weui-dialog__btn.default { | ||
652 | + color: #5f646e; | ||
653 | +} | ||
654 | +.weui-dialog .weui-dialog__btn + .weui-dialog__btn, | ||
655 | +.weui-toast .weui-dialog__btn + .weui-dialog__btn { | ||
656 | + position: relative; | ||
657 | +} | ||
658 | +.weui-dialog .weui-dialog__btn + .weui-dialog__btn:after, | ||
659 | +.weui-toast .weui-dialog__btn + .weui-dialog__btn:after { | ||
660 | + content: " "; | ||
661 | + position: absolute; | ||
662 | + left: 0; | ||
663 | + top: 0; | ||
664 | + width: 1px; | ||
665 | + height: 100%; | ||
666 | + border-left: 1px solid #D5D5D6; | ||
667 | + color: #D5D5D6; | ||
668 | + -webkit-transform-origin: 0 0; | ||
669 | + transform-origin: 0 0; | ||
670 | + -webkit-transform: scaleX(0.5); | ||
671 | + transform: scaleX(0.5); | ||
672 | +} | ||
673 | +.weui-dialog.weui-dialog--visible, | ||
674 | +.weui-toast.weui-dialog--visible, | ||
675 | +.weui-dialog.weui-toast--visible, | ||
676 | +.weui-toast.weui-toast--visible { | ||
677 | + opacity: 1; | ||
678 | + visibility: visible; | ||
679 | +} | ||
680 | +.weui-toast_forbidden { | ||
681 | + color: #F76260; | ||
682 | +} | ||
683 | +.weui-toast_cancel .weui-icon-toast:before { | ||
684 | + content: "\EA0D"; | ||
685 | +} | ||
686 | +.weui-toast_forbidden .weui-icon-toast:before { | ||
687 | + content: "\EA0B"; | ||
688 | + color: #F76260; | ||
689 | +} | ||
690 | +.weui-toast_text { | ||
691 | + min-height: 1em; | ||
692 | + width: auto; | ||
693 | + height: 45px; | ||
694 | + border-radius: 25px; | ||
695 | + margin-left: 0; | ||
696 | + -webkit-transform: scale(0.9) translate3d(-50%, 0, 0); | ||
697 | + transform: scale(0.9) translate3d(-50%, 0, 0); | ||
698 | + -webkit-transform-origin: left; | ||
699 | + transform-origin: left; | ||
700 | +} | ||
701 | +.weui-toast_text.weui-toast--visible { | ||
702 | + -webkit-transform: scale(1) translate3d(-50%, 0, 0); | ||
703 | + transform: scale(1) translate3d(-50%, 0, 0); | ||
704 | +} | ||
705 | +.weui-toast_text .weui-icon-toast { | ||
706 | + display: none; | ||
707 | +} | ||
708 | +.weui-toast_text .weui-toast_content { | ||
709 | + margin: 10px 15px; | ||
710 | +} | ||
711 | +.weui-mask { | ||
712 | + opacity: 0; | ||
713 | + -webkit-transition-duration: .3s; | ||
714 | + transition-duration: .3s; | ||
715 | + visibility: hidden; | ||
716 | +} | ||
717 | +.weui-mask.weui-mask--visible { | ||
718 | + opacity: 1; | ||
719 | + visibility: visible; | ||
720 | +} | ||
721 | +.weui-prompt-input { | ||
722 | + padding: 4px 6px; | ||
723 | + border: 1px solid #ccc; | ||
724 | + box-sizing: border-box; | ||
725 | + height: 2em; | ||
726 | + width: 80%; | ||
727 | + margin-top: 10px; | ||
728 | +} | ||
729 | +.weui-pull-to-refresh { | ||
730 | + margin-top: -50px; | ||
731 | + -webkit-transition: -webkit-transform .4s; | ||
732 | + transition: -webkit-transform .4s; | ||
733 | + transition: transform .4s; | ||
734 | + transition: transform .4s, -webkit-transform .4s; | ||
735 | +} | ||
736 | +.weui-pull-to-refresh.refreshing { | ||
737 | + -webkit-transform: translate3d(0, 50px, 0); | ||
738 | + transform: translate3d(0, 50px, 0); | ||
739 | +} | ||
740 | +.weui-pull-to-refresh.touching { | ||
741 | + -webkit-transition-duration: 0s; | ||
742 | + transition-duration: 0s; | ||
743 | +} | ||
744 | +.weui-pull-to-refresh__layer { | ||
745 | + height: 30px; | ||
746 | + line-height: 30px; | ||
747 | + padding: 10px; | ||
748 | + text-align: center; | ||
749 | +} | ||
750 | +.weui-pull-to-refresh__layer .down { | ||
751 | + display: inline-block; | ||
752 | +} | ||
753 | +.weui-pull-to-refresh__layer .up, | ||
754 | +.weui-pull-to-refresh__layer .refresh { | ||
755 | + display: none; | ||
756 | +} | ||
757 | +.weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow { | ||
758 | + display: inline-block; | ||
759 | + z-index: 10; | ||
760 | + width: 20px; | ||
761 | + height: 20px; | ||
762 | + margin-right: 4px; | ||
763 | + vertical-align: -4px; | ||
764 | + background: no-repeat center; | ||
765 | + background-size: 13px 20px; | ||
766 | + -webkit-transition-duration: 300ms; | ||
767 | + transition-duration: 300ms; | ||
768 | + -webkit-transform: rotate(0deg) translate3d(0, 0, 0); | ||
769 | + transform: rotate(0deg) translate3d(0, 0, 0); | ||
770 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2026%2040'%3E%3Cpolygon%20points%3D'9%2C22%209%2C0%2017%2C0%2017%2C22%2026%2C22%2013.5%2C40%200%2C22'%20fill%3D'%238c8c8c'%2F%3E%3C%2Fsvg%3E"); | ||
771 | +} | ||
772 | +.weui-pull-to-refresh__layer .weui-pull-to-refresh__preloader { | ||
773 | + display: none; | ||
774 | + vertical-align: -4px; | ||
775 | + margin-right: 4px; | ||
776 | + width: 20px; | ||
777 | + height: 20px; | ||
778 | + -webkit-transform-origin: 50%; | ||
779 | + transform-origin: 50%; | ||
780 | + -webkit-animation: preloader-spin 1s steps(12, end) infinite; | ||
781 | + animation: preloader-spin 1s steps(12, end) infinite; | ||
782 | +} | ||
783 | +.weui-pull-to-refresh__layer .weui-pull-to-refresh__preloader:after { | ||
784 | + display: block; | ||
785 | + width: 100%; | ||
786 | + height: 100%; | ||
787 | + content: ""; | ||
788 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); | ||
789 | + background-repeat: no-repeat; | ||
790 | + background-position: 50%; | ||
791 | + background-size: 100%; | ||
792 | +} | ||
793 | +.pull-up .weui-pull-to-refresh__layer .down, | ||
794 | +.refreshing .weui-pull-to-refresh__layer .down { | ||
795 | + display: none; | ||
796 | +} | ||
797 | +.pull-up .weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow { | ||
798 | + display: inline-block; | ||
799 | + -webkit-transform: rotate(180deg) translate3d(0, 0, 0); | ||
800 | + transform: rotate(180deg) translate3d(0, 0, 0); | ||
801 | +} | ||
802 | +.pull-up .weui-pull-to-refresh__layer .up { | ||
803 | + display: inline-block; | ||
804 | +} | ||
805 | +.pull-down .weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow { | ||
806 | + display: inline-block; | ||
807 | +} | ||
808 | +.pull-down .weui-pull-to-refresh__layer .down { | ||
809 | + display: inline-block; | ||
810 | +} | ||
811 | +.refreshing .weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow { | ||
812 | + display: none; | ||
813 | +} | ||
814 | +.refreshing .weui-pull-to-refresh__layer .weui-pull-to-refresh__preloader { | ||
815 | + display: inline-block; | ||
816 | +} | ||
817 | +.refreshing .weui-pull-to-refresh__layer .refresh { | ||
818 | + display: inline-block; | ||
819 | +} | ||
820 | +@keyframes preloader-spin { | ||
821 | + 100% { | ||
822 | + -webkit-transform: rotate(360deg); | ||
823 | + transform: rotate(360deg); | ||
824 | + } | ||
825 | +} | ||
826 | +.weui-tab__bd-item.weui-pull-to-refresh { | ||
827 | + position: absolute; | ||
828 | + top: 50px; | ||
829 | +} | ||
830 | +.weui-tabbar__item { | ||
831 | + position: relative; | ||
832 | +} | ||
833 | +.weui-tabbar__item.weui-bar__item--on .weui-tabbar__label { | ||
834 | + color: #04BE02; | ||
835 | +} | ||
836 | +.weui-navbar__item { | ||
837 | + color: #888; | ||
838 | +} | ||
839 | +.weui-navbar__item.weui-bar__item--on { | ||
840 | + color: #666; | ||
841 | + background-color: #f1f1f1; | ||
842 | +} | ||
843 | +.weui-tab__bd { | ||
844 | + box-sizing: border-box; | ||
845 | + height: 100%; | ||
846 | +} | ||
847 | +.weui-tab__bd .weui-tab__bd-item { | ||
848 | + display: none; | ||
849 | + height: 100%; | ||
850 | + overflow: auto; | ||
851 | +} | ||
852 | +.weui-tab__bd .weui-tab__bd-item.weui-tab__bd-item--active { | ||
853 | + display: block; | ||
854 | +} | ||
855 | +.weui-navbar + .weui-tab__bd { | ||
856 | + padding-top: 50px; | ||
857 | +} | ||
858 | +.toolbar { | ||
859 | + position: relative; | ||
860 | + width: 100%; | ||
861 | + font-size: .85rem; | ||
862 | + line-height: 1.5; | ||
863 | + color: #3d4145; | ||
864 | + background: #f7f7f8; | ||
865 | +} | ||
866 | +.toolbar:before { | ||
867 | + content: ''; | ||
868 | + position: absolute; | ||
869 | + left: 0; | ||
870 | + top: 0; | ||
871 | + bottom: auto; | ||
872 | + right: auto; | ||
873 | + height: 1px; | ||
874 | + width: 100%; | ||
875 | + background-color: #d9d9d9; | ||
876 | + display: block; | ||
877 | + z-index: 15; | ||
878 | + -webkit-transform-origin: 50% 0%; | ||
879 | + transform-origin: 50% 0%; | ||
880 | +} | ||
881 | +@media only screen and (-webkit-min-device-pixel-ratio: 2) { | ||
882 | + .toolbar:before { | ||
883 | + -webkit-transform: scaleY(0.5); | ||
884 | + transform: scaleY(0.5); | ||
885 | + } | ||
886 | +} | ||
887 | +@media only screen and (-webkit-min-device-pixel-ratio: 3) { | ||
888 | + .toolbar:before { | ||
889 | + -webkit-transform: scaleY(0.33); | ||
890 | + transform: scaleY(0.33); | ||
891 | + } | ||
892 | +} | ||
893 | +.toolbar .toolbar-inner { | ||
894 | + height: 2.2rem; | ||
895 | + display: -webkit-box; | ||
896 | + display: -ms-flexbox; | ||
897 | + display: flex; | ||
898 | + text-align: center; | ||
899 | +} | ||
900 | +.toolbar .title { | ||
901 | + position: absolute; | ||
902 | + display: block; | ||
903 | + width: 100%; | ||
904 | + padding: 0; | ||
905 | + font-size: .85rem; | ||
906 | + font-weight: normal; | ||
907 | + line-height: 2.2rem; | ||
908 | + color: #3d4145; | ||
909 | + text-align: center; | ||
910 | + white-space: nowrap; | ||
911 | +} | ||
912 | +.toolbar .picker-button { | ||
913 | + position: absolute; | ||
914 | + right: 0; | ||
915 | + box-sizing: border-box; | ||
916 | + height: 2.2rem; | ||
917 | + line-height: 2.2rem; | ||
918 | + color: #04BE02; | ||
919 | + z-index: 1; | ||
920 | + padding: 0 .5rem; | ||
921 | +} | ||
922 | +/* === Columns Picker === */ | ||
923 | +.weui-picker-modal { | ||
924 | + width: 100%; | ||
925 | + position: absolute; | ||
926 | + bottom: 0; | ||
927 | + text-align: center; | ||
928 | + border-radius: 0; | ||
929 | + opacity: 0.6; | ||
930 | + color: #3d4145; | ||
931 | + -webkit-transition-duration: .3s; | ||
932 | + transition-duration: .3s; | ||
933 | + height: 13rem; | ||
934 | + background: #EFEFF4; | ||
935 | + -webkit-transform: translate3d(0, 100%, 0); | ||
936 | + transform: translate3d(0, 100%, 0); | ||
937 | + -webkit-transition-property: opacity, -webkit-transform; | ||
938 | + transition-property: opacity, -webkit-transform; | ||
939 | + transition-property: transform, opacity; | ||
940 | + transition-property: transform, opacity, -webkit-transform; | ||
941 | +} | ||
942 | +.weui-picker-modal.picker-modal-inline { | ||
943 | + height: 10.8rem; | ||
944 | + opacity: 1; | ||
945 | + position: static; | ||
946 | + -webkit-transform: translate3d(0, 0, 0); | ||
947 | + transform: translate3d(0, 0, 0); | ||
948 | +} | ||
949 | +.weui-picker-modal.picker-modal-inline .toolbar { | ||
950 | + display: none; | ||
951 | +} | ||
952 | +.weui-picker-modal.picker-columns-single .picker-items-col { | ||
953 | + width: 100%; | ||
954 | +} | ||
955 | +.weui-picker-modal.weui-picker-modal-visible { | ||
956 | + opacity: 1; | ||
957 | + -webkit-transform: translate3d(0, 0, 0); | ||
958 | + transform: translate3d(0, 0, 0); | ||
959 | +} | ||
960 | +.weui-picker-modal .picker-modal-inner { | ||
961 | + position: relative; | ||
962 | + height: 10.8rem; | ||
963 | +} | ||
964 | +.weui-picker-modal .picker-columns { | ||
965 | + width: 100%; | ||
966 | + height: 13rem; | ||
967 | + z-index: 11500; | ||
968 | +} | ||
969 | +.weui-picker-modal .picker-columns.picker-modal-inline, | ||
970 | +.popover .weui-picker-modal .picker-columns { | ||
971 | + height: 10rem; | ||
972 | +} | ||
973 | +@media (orientation: landscape) and (max-height: 415px) { | ||
974 | + .weui-picker-modal .picker-columns:not(.picker-modal-inline) { | ||
975 | + height: 10rem; | ||
976 | + } | ||
977 | +} | ||
978 | +.weui-picker-modal .popover.popover-picker-columns { | ||
979 | + width: 14rem; | ||
980 | +} | ||
981 | +.weui-picker-modal .picker-items { | ||
982 | + display: -webkit-box; | ||
983 | + display: -ms-flexbox; | ||
984 | + display: flex; | ||
985 | + -webkit-box-pack: center; | ||
986 | + -ms-flex-pack: center; | ||
987 | + justify-content: center; | ||
988 | + width: 100%; | ||
989 | + padding: 0; | ||
990 | + text-align: right; | ||
991 | + font-size: 1rem; | ||
992 | + font-weight: normal; | ||
993 | + -webkit-mask-box-image: -webkit-linear-gradient(bottom, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent); | ||
994 | + -webkit-mask-box-image: linear-gradient(to top, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent); | ||
995 | +} | ||
996 | +.weui-picker-modal .bar + .picker-items { | ||
997 | + height: 10.8rem; | ||
998 | +} | ||
999 | +.weui-picker-modal .picker-items-col { | ||
1000 | + overflow: hidden; | ||
1001 | + position: relative; | ||
1002 | + max-height: 100%; | ||
1003 | +} | ||
1004 | +.weui-picker-modal .picker-items-col.picker-items-col-left { | ||
1005 | + text-align: left; | ||
1006 | +} | ||
1007 | +.weui-picker-modal .picker-items-col.picker-items-col-center { | ||
1008 | + text-align: center; | ||
1009 | +} | ||
1010 | +.weui-picker-modal .picker-items-col.picker-items-col-right { | ||
1011 | + text-align: right; | ||
1012 | +} | ||
1013 | +.weui-picker-modal .picker-items-col.picker-items-col-divider { | ||
1014 | + color: #3d4145; | ||
1015 | + display: -webkit-box; | ||
1016 | + display: -ms-flexbox; | ||
1017 | + display: flex; | ||
1018 | + -webkit-box-align: center; | ||
1019 | + -ms-flex-align: center; | ||
1020 | + align-items: center; | ||
1021 | +} | ||
1022 | +.weui-picker-modal .picker-items-col-wrapper { | ||
1023 | + -webkit-transition: 300ms; | ||
1024 | + transition: 300ms; | ||
1025 | + -webkit-transition-timing-function: ease-out; | ||
1026 | + transition-timing-function: ease-out; | ||
1027 | +} | ||
1028 | +.weui-picker-modal .picker-item { | ||
1029 | + height: 32px; | ||
1030 | + line-height: 32px; | ||
1031 | + padding: 0 10px; | ||
1032 | + white-space: nowrap; | ||
1033 | + position: relative; | ||
1034 | + overflow: hidden; | ||
1035 | + text-overflow: ellipsis; | ||
1036 | + color: #9b9b9b; | ||
1037 | + left: 0; | ||
1038 | + top: 0; | ||
1039 | + width: 100%; | ||
1040 | + box-sizing: border-box; | ||
1041 | + -webkit-transition: 300ms; | ||
1042 | + transition: 300ms; | ||
1043 | +} | ||
1044 | +.picker-items-col-absolute .weui-picker-modal .picker-item { | ||
1045 | + position: absolute; | ||
1046 | +} | ||
1047 | +.weui-picker-modal .picker-item.picker-item-far { | ||
1048 | + pointer-events: none; | ||
1049 | +} | ||
1050 | +.weui-picker-modal .picker-item.picker-selected { | ||
1051 | + color: #3d4145; | ||
1052 | + -webkit-transform: translate3d(0, 0, 0); | ||
1053 | + transform: translate3d(0, 0, 0); | ||
1054 | + -webkit-transform: rotateX(0deg); | ||
1055 | + transform: rotateX(0deg); | ||
1056 | +} | ||
1057 | +.weui-picker-modal .picker-center-highlight { | ||
1058 | + height: 32px; | ||
1059 | + box-sizing: border-box; | ||
1060 | + position: absolute; | ||
1061 | + left: 0; | ||
1062 | + width: 100%; | ||
1063 | + top: 50%; | ||
1064 | + margin-top: -16px; | ||
1065 | + pointer-events: none; | ||
1066 | +} | ||
1067 | +.weui-picker-modal .picker-center-highlight:before { | ||
1068 | + content: ''; | ||
1069 | + position: absolute; | ||
1070 | + left: 0; | ||
1071 | + top: 0; | ||
1072 | + bottom: auto; | ||
1073 | + right: auto; | ||
1074 | + height: 1px; | ||
1075 | + width: 100%; | ||
1076 | + background-color: #D9D9D9; | ||
1077 | + display: block; | ||
1078 | + z-index: 15; | ||
1079 | + -webkit-transform-origin: 50% 0%; | ||
1080 | + transform-origin: 50% 0%; | ||
1081 | +} | ||
1082 | +@media only screen and (-webkit-min-device-pixel-ratio: 2) { | ||
1083 | + .weui-picker-modal .picker-center-highlight:before { | ||
1084 | + -webkit-transform: scaleY(0.5); | ||
1085 | + transform: scaleY(0.5); | ||
1086 | + } | ||
1087 | +} | ||
1088 | +@media only screen and (-webkit-min-device-pixel-ratio: 3) { | ||
1089 | + .weui-picker-modal .picker-center-highlight:before { | ||
1090 | + -webkit-transform: scaleY(0.33); | ||
1091 | + transform: scaleY(0.33); | ||
1092 | + } | ||
1093 | +} | ||
1094 | +.weui-picker-modal .picker-center-highlight:after { | ||
1095 | + content: ''; | ||
1096 | + position: absolute; | ||
1097 | + left: 0; | ||
1098 | + bottom: 0; | ||
1099 | + right: auto; | ||
1100 | + top: auto; | ||
1101 | + height: 1px; | ||
1102 | + width: 100%; | ||
1103 | + background-color: #D9D9D9; | ||
1104 | + display: block; | ||
1105 | + z-index: 15; | ||
1106 | + -webkit-transform-origin: 50% 100%; | ||
1107 | + transform-origin: 50% 100%; | ||
1108 | +} | ||
1109 | +@media only screen and (-webkit-min-device-pixel-ratio: 2) { | ||
1110 | + .weui-picker-modal .picker-center-highlight:after { | ||
1111 | + -webkit-transform: scaleY(0.5); | ||
1112 | + transform: scaleY(0.5); | ||
1113 | + } | ||
1114 | +} | ||
1115 | +@media only screen and (-webkit-min-device-pixel-ratio: 3) { | ||
1116 | + .weui-picker-modal .picker-center-highlight:after { | ||
1117 | + -webkit-transform: scaleY(0.33); | ||
1118 | + transform: scaleY(0.33); | ||
1119 | + } | ||
1120 | +} | ||
1121 | +.weui-picker-modal .picker-3d .picker-items { | ||
1122 | + overflow: hidden; | ||
1123 | + -webkit-perspective: 1200px; | ||
1124 | + perspective: 1200px; | ||
1125 | +} | ||
1126 | +.weui-picker-modal .picker-3d .picker-items-col, | ||
1127 | +.weui-picker-modal .picker-3d .picker-items-col-wrapper, | ||
1128 | +.weui-picker-modal .picker-3d .picker-item { | ||
1129 | + -webkit-transform-style: preserve-3d; | ||
1130 | + transform-style: preserve-3d; | ||
1131 | +} | ||
1132 | +.weui-picker-modal .picker-3d .picker-items-col { | ||
1133 | + overflow: visible; | ||
1134 | +} | ||
1135 | +.weui-picker-modal .picker-3d .picker-item { | ||
1136 | + -webkit-transform-origin: center center -110px; | ||
1137 | + transform-origin: center center -110px; | ||
1138 | + -webkit-backface-visibility: hidden; | ||
1139 | + backface-visibility: hidden; | ||
1140 | + -webkit-transition-timing-function: ease-out; | ||
1141 | + transition-timing-function: ease-out; | ||
1142 | +} | ||
1143 | +.weui-picker-overlay, | ||
1144 | +.weui-picker-container { | ||
1145 | + position: fixed; | ||
1146 | + bottom: 0; | ||
1147 | + left: 0; | ||
1148 | + right: 0; | ||
1149 | + height: 0; | ||
1150 | + width: 100%; | ||
1151 | + z-index: 1000; | ||
1152 | +} | ||
1153 | +.city-picker .picker-items-col { | ||
1154 | + -webkit-box-flex: 1; | ||
1155 | + -ms-flex: 1; | ||
1156 | + flex: 1; | ||
1157 | + max-width: 7rem; | ||
1158 | +} | ||
1159 | +.weui-picker-container .weui-cells { | ||
1160 | + margin: 0; | ||
1161 | + text-align: left; | ||
1162 | +} | ||
1163 | +.datetime-picker .picker-item { | ||
1164 | + text-overflow: initial; | ||
1165 | +} | ||
1166 | +.weui-select-modal { | ||
1167 | + height: auto; | ||
1168 | +} | ||
1169 | +.weui-select-modal .weui-cells { | ||
1170 | + margin: 0; | ||
1171 | + text-align: left; | ||
1172 | + overflow-y: auto; | ||
1173 | + overflow-x: hidden; | ||
1174 | + max-height: 16rem; | ||
1175 | +} | ||
1176 | +.weui-select-modal .weui-cells:after { | ||
1177 | + display: none; | ||
1178 | +} | ||
1179 | +/* === Calendar === */ | ||
1180 | +.weui-picker-calendar { | ||
1181 | + background: #fff; | ||
1182 | + height: 15rem; | ||
1183 | + width: 100%; | ||
1184 | + overflow: hidden; | ||
1185 | +} | ||
1186 | +.weui-picker-calendar .picker-modal-inner { | ||
1187 | + overflow: hidden; | ||
1188 | + height: 12.8rem; | ||
1189 | +} | ||
1190 | +.picker-calendar-week-days { | ||
1191 | + height: .9rem; | ||
1192 | + background: #f7f7f8; | ||
1193 | + display: -webkit-box; | ||
1194 | + display: -ms-flexbox; | ||
1195 | + display: flex; | ||
1196 | + font-size: 11px; | ||
1197 | + box-sizing: border-box; | ||
1198 | + position: relative; | ||
1199 | +} | ||
1200 | +.picker-calendar-week-days:after { | ||
1201 | + content: ''; | ||
1202 | + position: absolute; | ||
1203 | + left: 0; | ||
1204 | + bottom: 0; | ||
1205 | + right: auto; | ||
1206 | + top: auto; | ||
1207 | + height: 1px; | ||
1208 | + width: 100%; | ||
1209 | + background-color: #c4c4c4; | ||
1210 | + display: block; | ||
1211 | + z-index: 15; | ||
1212 | + -webkit-transform-origin: 50% 100%; | ||
1213 | + transform-origin: 50% 100%; | ||
1214 | +} | ||
1215 | +@media only screen and (-webkit-min-device-pixel-ratio: 2) { | ||
1216 | + .picker-calendar-week-days:after { | ||
1217 | + -webkit-transform: scaleY(0.5); | ||
1218 | + transform: scaleY(0.5); | ||
1219 | + } | ||
1220 | +} | ||
1221 | +@media only screen and (-webkit-min-device-pixel-ratio: 3) { | ||
1222 | + .picker-calendar-week-days:after { | ||
1223 | + -webkit-transform: scaleY(0.33); | ||
1224 | + transform: scaleY(0.33); | ||
1225 | + } | ||
1226 | +} | ||
1227 | +.picker-calendar-week-days .picker-calendar-week-day { | ||
1228 | + -webkit-flex-shrink: 1; | ||
1229 | + -ms-flex: 0 1 auto; | ||
1230 | + -ms-flex-negative: 1; | ||
1231 | + flex-shrink: 1; | ||
1232 | + width: 14.28571429%; | ||
1233 | + width: calc(100% / 7); | ||
1234 | + line-height: 17px; | ||
1235 | + text-align: center; | ||
1236 | +} | ||
1237 | +.picker-calendar-week-days + .picker-calendar-months { | ||
1238 | + height: 11.9rem; | ||
1239 | +} | ||
1240 | +.picker-calendar-months { | ||
1241 | + width: 100%; | ||
1242 | + height: 100%; | ||
1243 | + overflow: hidden; | ||
1244 | + position: relative; | ||
1245 | +} | ||
1246 | +.picker-calendar-months-wrapper { | ||
1247 | + position: relative; | ||
1248 | + width: 100%; | ||
1249 | + height: 100%; | ||
1250 | + -webkit-transition: 300ms; | ||
1251 | + transition: 300ms; | ||
1252 | +} | ||
1253 | +.picker-calendar-month { | ||
1254 | + display: -webkit-box; | ||
1255 | + display: -ms-flexbox; | ||
1256 | + display: flex; | ||
1257 | + -webkit-box-orient: vertical; | ||
1258 | + -ms-flex-direction: column; | ||
1259 | + flex-direction: column; | ||
1260 | + width: 100%; | ||
1261 | + height: 100%; | ||
1262 | + position: absolute; | ||
1263 | + left: 0; | ||
1264 | + top: 0; | ||
1265 | +} | ||
1266 | +.picker-calendar-row { | ||
1267 | + height: 16.66666667%; | ||
1268 | + height: calc(100% / 6); | ||
1269 | + display: -webkit-box; | ||
1270 | + display: -ms-flexbox; | ||
1271 | + display: flex; | ||
1272 | + -webkit-flex-shrink: 1; | ||
1273 | + -ms-flex: 0 1 auto; | ||
1274 | + -ms-flex-negative: 1; | ||
1275 | + flex-shrink: 1; | ||
1276 | + width: 100%; | ||
1277 | + position: relative; | ||
1278 | +} | ||
1279 | +.picker-calendar-row:after { | ||
1280 | + content: ''; | ||
1281 | + position: absolute; | ||
1282 | + left: 0; | ||
1283 | + bottom: 0; | ||
1284 | + right: auto; | ||
1285 | + top: auto; | ||
1286 | + height: 1px; | ||
1287 | + width: 100%; | ||
1288 | + background-color: #ccc; | ||
1289 | + display: block; | ||
1290 | + z-index: 15; | ||
1291 | + -webkit-transform-origin: 50% 100%; | ||
1292 | + transform-origin: 50% 100%; | ||
1293 | +} | ||
1294 | +@media only screen and (-webkit-min-device-pixel-ratio: 2) { | ||
1295 | + .picker-calendar-row:after { | ||
1296 | + -webkit-transform: scaleY(0.5); | ||
1297 | + transform: scaleY(0.5); | ||
1298 | + } | ||
1299 | +} | ||
1300 | +@media only screen and (-webkit-min-device-pixel-ratio: 3) { | ||
1301 | + .picker-calendar-row:after { | ||
1302 | + -webkit-transform: scaleY(0.33); | ||
1303 | + transform: scaleY(0.33); | ||
1304 | + } | ||
1305 | +} | ||
1306 | +.weui-picker-modal .picker-calendar-row:last-child:after { | ||
1307 | + display: none; | ||
1308 | +} | ||
1309 | +.picker-calendar-day { | ||
1310 | + -webkit-flex-shrink: 1; | ||
1311 | + -ms-flex: 0 1 auto; | ||
1312 | + -ms-flex-negative: 1; | ||
1313 | + flex-shrink: 1; | ||
1314 | + display: -webkit-box; | ||
1315 | + display: -ms-flexbox; | ||
1316 | + display: flex; | ||
1317 | + -webkit-box-pack: center; | ||
1318 | + -ms-flex-pack: center; | ||
1319 | + justify-content: center; | ||
1320 | + -webkit-box-align: center; | ||
1321 | + -ms-flex-align: center; | ||
1322 | + align-items: center; | ||
1323 | + box-sizing: border-box; | ||
1324 | + width: 14.28571429%; | ||
1325 | + width: calc(100% / 7); | ||
1326 | + text-align: center; | ||
1327 | + color: #3d4145; | ||
1328 | + font-size: 15px; | ||
1329 | + cursor: pointer; | ||
1330 | +} | ||
1331 | +.picker-calendar-day.picker-calendar-day-prev, | ||
1332 | +.picker-calendar-day.picker-calendar-day-next { | ||
1333 | + color: #ccc; | ||
1334 | +} | ||
1335 | +.picker-calendar-day.picker-calendar-day-disabled { | ||
1336 | + color: #d4d4d4; | ||
1337 | + cursor: auto; | ||
1338 | +} | ||
1339 | +.picker-calendar-day.picker-calendar-day-today span { | ||
1340 | + background: #e3e3e3; | ||
1341 | +} | ||
1342 | +.picker-calendar-day.picker-calendar-day-selected span { | ||
1343 | + background: #04BE02; | ||
1344 | + color: #fff; | ||
1345 | +} | ||
1346 | +.picker-calendar-day span { | ||
1347 | + display: inline-block; | ||
1348 | + border-radius: 100%; | ||
1349 | + width: 30px; | ||
1350 | + height: 30px; | ||
1351 | + line-height: 30px; | ||
1352 | +} | ||
1353 | +.picker-calendar-month-picker, | ||
1354 | +.picker-calendar-year-picker { | ||
1355 | + display: -webkit-box; | ||
1356 | + display: -ms-flexbox; | ||
1357 | + display: flex; | ||
1358 | + -webkit-box-align: center; | ||
1359 | + -ms-flex-align: center; | ||
1360 | + align-items: center; | ||
1361 | + -webkit-box-pack: justify; | ||
1362 | + -ms-flex-pack: justify; | ||
1363 | + justify-content: space-between; | ||
1364 | + width: 50%; | ||
1365 | + max-width: 200px; | ||
1366 | + -webkit-flex-shrink: 10; | ||
1367 | + -ms-flex: 0 10 auto; | ||
1368 | + -ms-flex-negative: 10; | ||
1369 | + flex-shrink: 10; | ||
1370 | +} | ||
1371 | +.picker-calendar-month-picker a.icon-only, | ||
1372 | +.picker-calendar-year-picker a.icon-only { | ||
1373 | + min-width: 36px; | ||
1374 | +} | ||
1375 | +.picker-calendar-month-picker span, | ||
1376 | +.picker-calendar-year-picker span { | ||
1377 | + -webkit-flex-shrink: 1; | ||
1378 | + -ms-flex: 0 1 auto; | ||
1379 | + -ms-flex-negative: 1; | ||
1380 | + flex-shrink: 1; | ||
1381 | + position: relative; | ||
1382 | + overflow: hidden; | ||
1383 | + text-overflow: ellipsis; | ||
1384 | +} | ||
1385 | +.popover .picker-calendar .picker-calendar-week-days, | ||
1386 | +.picker-calendar.picker-modal-inline .picker-calendar-week-days { | ||
1387 | + background: none; | ||
1388 | +} | ||
1389 | +.popover .picker-calendar .toolbar:before, | ||
1390 | +.picker-calendar.picker-modal-inline .toolbar:before, | ||
1391 | +.popover .picker-calendar .picker-calendar-week-days:before, | ||
1392 | +.picker-calendar.picker-modal-inline .picker-calendar-week-days:before { | ||
1393 | + display: none; | ||
1394 | +} | ||
1395 | +.popover .picker-calendar .toolbar:after, | ||
1396 | +.picker-calendar.picker-modal-inline .toolbar:after, | ||
1397 | +.popover .picker-calendar .picker-calendar-week-days:after, | ||
1398 | +.picker-calendar.picker-modal-inline .picker-calendar-week-days:after { | ||
1399 | + display: none; | ||
1400 | +} | ||
1401 | +.popover .picker-calendar .toolbar ~ .picker-modal-inner .picker-calendar-months:before, | ||
1402 | +.picker-calendar.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months:before, | ||
1403 | +.popover .picker-calendar .picker-calendar-week-days ~ .picker-calendar-months:before, | ||
1404 | +.picker-calendar.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months:before { | ||
1405 | + content: ''; | ||
1406 | + position: absolute; | ||
1407 | + left: 0; | ||
1408 | + top: 0; | ||
1409 | + bottom: auto; | ||
1410 | + right: auto; | ||
1411 | + height: 1px; | ||
1412 | + width: 100%; | ||
1413 | + background-color: #c4c4c4; | ||
1414 | + display: block; | ||
1415 | + z-index: 15; | ||
1416 | + -webkit-transform-origin: 50% 0%; | ||
1417 | + transform-origin: 50% 0%; | ||
1418 | +} | ||
1419 | +@media only screen and (-webkit-min-device-pixel-ratio: 2) { | ||
1420 | + .popover .picker-calendar .toolbar ~ .picker-modal-inner .picker-calendar-months:before, | ||
1421 | + .picker-calendar.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months:before, | ||
1422 | + .popover .picker-calendar .picker-calendar-week-days ~ .picker-calendar-months:before, | ||
1423 | + .picker-calendar.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months:before { | ||
1424 | + -webkit-transform: scaleY(0.5); | ||
1425 | + transform: scaleY(0.5); | ||
1426 | + } | ||
1427 | +} | ||
1428 | +@media only screen and (-webkit-min-device-pixel-ratio: 3) { | ||
1429 | + .popover .picker-calendar .toolbar ~ .picker-modal-inner .picker-calendar-months:before, | ||
1430 | + .picker-calendar.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months:before, | ||
1431 | + .popover .picker-calendar .picker-calendar-week-days ~ .picker-calendar-months:before, | ||
1432 | + .picker-calendar.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months:before { | ||
1433 | + -webkit-transform: scaleY(0.33); | ||
1434 | + transform: scaleY(0.33); | ||
1435 | + } | ||
1436 | +} | ||
1437 | +.picker-calendar-month-picker, | ||
1438 | +.picker-calendar-year-picker { | ||
1439 | + display: block; | ||
1440 | + line-height: 2.2rem; | ||
1441 | + -webkit-box-flex: 1; | ||
1442 | + -ms-flex: 1; | ||
1443 | + flex: 1; | ||
1444 | +} | ||
1445 | +.picker-calendar-month-picker a.icon-only, | ||
1446 | +.picker-calendar-year-picker a.icon-only { | ||
1447 | + float: left; | ||
1448 | + width: 25%; | ||
1449 | + height: 2.2rem; | ||
1450 | + line-height: 2rem; | ||
1451 | +} | ||
1452 | +.picker-calendar-month-picker .current-month-value, | ||
1453 | +.picker-calendar-year-picker .current-month-value, | ||
1454 | +.picker-calendar-month-picker .current-year-value, | ||
1455 | +.picker-calendar-year-picker .current-year-value { | ||
1456 | + float: left; | ||
1457 | + width: 50%; | ||
1458 | + height: 2.2rem; | ||
1459 | +} | ||
1460 | +i.icon { | ||
1461 | + display: inline-block; | ||
1462 | + vertical-align: middle; | ||
1463 | + background-size: 100% auto; | ||
1464 | + background-position: center; | ||
1465 | + background-repeat: no-repeat; | ||
1466 | + font-style: normal; | ||
1467 | + position: relative; | ||
1468 | +} | ||
1469 | +i.icon.icon-next, | ||
1470 | +i.icon.icon-prev { | ||
1471 | + width: 0.75rem; | ||
1472 | + height: 0.75rem; | ||
1473 | +} | ||
1474 | +i.icon.icon-next { | ||
1475 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%2304BE02'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); | ||
1476 | +} | ||
1477 | +i.icon.icon-prev { | ||
1478 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%2304BE02'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); | ||
1479 | +} | ||
1480 | +/** | ||
1481 | + * Swiper 3.3.1 | ||
1482 | + * Most modern mobile touch slider and framework with hardware accelerated transitions | ||
1483 | + * | ||
1484 | + * http://www.idangero.us/swiper/ | ||
1485 | + * | ||
1486 | + * Copyright 2016, Vladimir Kharlampidi | ||
1487 | + * The iDangero.us | ||
1488 | + * http://www.idangero.us/ | ||
1489 | + * | ||
1490 | + * Licensed under MIT | ||
1491 | + * | ||
1492 | + * Released on: February 7, 2016 | ||
1493 | + */ | ||
1494 | +.swiper-container { | ||
1495 | + margin: 0 auto; | ||
1496 | + position: relative; | ||
1497 | + overflow: hidden; | ||
1498 | + /* Fix of Webkit flickering */ | ||
1499 | + z-index: 1; | ||
1500 | +} | ||
1501 | +.swiper-container-no-flexbox .swiper-slide { | ||
1502 | + float: left; | ||
1503 | +} | ||
1504 | +.swiper-container-vertical > .swiper-wrapper { | ||
1505 | + -webkit-box-orient: vertical; | ||
1506 | + -ms-flex-direction: column; | ||
1507 | + flex-direction: column; | ||
1508 | +} | ||
1509 | +.swiper-wrapper { | ||
1510 | + position: relative; | ||
1511 | + width: 100%; | ||
1512 | + height: 100%; | ||
1513 | + z-index: 1; | ||
1514 | + display: -webkit-box; | ||
1515 | + display: -ms-flexbox; | ||
1516 | + display: flex; | ||
1517 | + -webkit-transition-property: -webkit-transform; | ||
1518 | + transition-property: -webkit-transform; | ||
1519 | + transition-property: transform; | ||
1520 | + transition-property: transform, -webkit-transform; | ||
1521 | + box-sizing: content-box; | ||
1522 | +} | ||
1523 | +.swiper-container-android .swiper-slide, | ||
1524 | +.swiper-wrapper { | ||
1525 | + -webkit-transform: translate3d(0px, 0, 0); | ||
1526 | + transform: translate3d(0px, 0, 0); | ||
1527 | +} | ||
1528 | +.swiper-container-multirow > .swiper-wrapper { | ||
1529 | + -webkit-box-lines: multiple; | ||
1530 | + -moz-box-lines: multiple; | ||
1531 | + -ms-flex-wrap: wrap; | ||
1532 | + flex-wrap: wrap; | ||
1533 | +} | ||
1534 | +.swiper-container-free-mode > .swiper-wrapper { | ||
1535 | + -webkit-transition-timing-function: ease-out; | ||
1536 | + transition-timing-function: ease-out; | ||
1537 | + margin: 0 auto; | ||
1538 | +} | ||
1539 | +.swiper-slide { | ||
1540 | + -webkit-flex-shrink: 0; | ||
1541 | + -ms-flex: 0 0 auto; | ||
1542 | + -ms-flex-negative: 0; | ||
1543 | + flex-shrink: 0; | ||
1544 | + width: 100%; | ||
1545 | + height: 100%; | ||
1546 | + position: relative; | ||
1547 | +} | ||
1548 | +/* Auto Height */ | ||
1549 | +.swiper-container-autoheight, | ||
1550 | +.swiper-container-autoheight .swiper-slide { | ||
1551 | + height: auto; | ||
1552 | +} | ||
1553 | +.swiper-container-autoheight .swiper-wrapper { | ||
1554 | + -webkit-box-align: start; | ||
1555 | + -ms-flex-align: start; | ||
1556 | + align-items: flex-start; | ||
1557 | + -webkit-transition-property: -webkit-transform, height; | ||
1558 | + -webkit-transition-property: height, -webkit-transform; | ||
1559 | + transition-property: height, -webkit-transform; | ||
1560 | + transition-property: transform, height; | ||
1561 | + transition-property: transform, height, -webkit-transform; | ||
1562 | +} | ||
1563 | +/* a11y */ | ||
1564 | +.swiper-container .swiper-notification { | ||
1565 | + position: absolute; | ||
1566 | + left: 0; | ||
1567 | + top: 0; | ||
1568 | + pointer-events: none; | ||
1569 | + opacity: 0; | ||
1570 | + z-index: -1000; | ||
1571 | +} | ||
1572 | +/* IE10 Windows Phone 8 Fixes */ | ||
1573 | +.swiper-wp8-horizontal { | ||
1574 | + -ms-touch-action: pan-y; | ||
1575 | + touch-action: pan-y; | ||
1576 | +} | ||
1577 | +.swiper-wp8-vertical { | ||
1578 | + -ms-touch-action: pan-x; | ||
1579 | + touch-action: pan-x; | ||
1580 | +} | ||
1581 | +/* Arrows */ | ||
1582 | +.swiper-button-prev, | ||
1583 | +.swiper-button-next { | ||
1584 | + position: absolute; | ||
1585 | + top: 50%; | ||
1586 | + width: 27px; | ||
1587 | + height: 44px; | ||
1588 | + margin-top: -22px; | ||
1589 | + z-index: 10; | ||
1590 | + cursor: pointer; | ||
1591 | + background-size: 27px 44px; | ||
1592 | + background-position: center; | ||
1593 | + background-repeat: no-repeat; | ||
1594 | +} | ||
1595 | +.swiper-button-prev.swiper-button-disabled, | ||
1596 | +.swiper-button-next.swiper-button-disabled { | ||
1597 | + opacity: 0.35; | ||
1598 | + cursor: auto; | ||
1599 | + pointer-events: none; | ||
1600 | +} | ||
1601 | +.swiper-button-prev, | ||
1602 | +.swiper-container-rtl .swiper-button-next { | ||
1603 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); | ||
1604 | + left: 10px; | ||
1605 | + right: auto; | ||
1606 | +} | ||
1607 | +.swiper-button-prev.swiper-button-black, | ||
1608 | +.swiper-container-rtl .swiper-button-next.swiper-button-black { | ||
1609 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); | ||
1610 | +} | ||
1611 | +.swiper-button-prev.swiper-button-white, | ||
1612 | +.swiper-container-rtl .swiper-button-next.swiper-button-white { | ||
1613 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); | ||
1614 | +} | ||
1615 | +.swiper-button-next, | ||
1616 | +.swiper-container-rtl .swiper-button-prev { | ||
1617 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); | ||
1618 | + right: 10px; | ||
1619 | + left: auto; | ||
1620 | +} | ||
1621 | +.swiper-button-next.swiper-button-black, | ||
1622 | +.swiper-container-rtl .swiper-button-prev.swiper-button-black { | ||
1623 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); | ||
1624 | +} | ||
1625 | +.swiper-button-next.swiper-button-white, | ||
1626 | +.swiper-container-rtl .swiper-button-prev.swiper-button-white { | ||
1627 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); | ||
1628 | +} | ||
1629 | +/* Pagination Styles */ | ||
1630 | +.swiper-pagination { | ||
1631 | + position: absolute; | ||
1632 | + text-align: center; | ||
1633 | + -webkit-transition: 300ms; | ||
1634 | + transition: 300ms; | ||
1635 | + -webkit-transform: translate3d(0, 0, 0); | ||
1636 | + transform: translate3d(0, 0, 0); | ||
1637 | + z-index: 10; | ||
1638 | +} | ||
1639 | +.swiper-pagination.swiper-pagination-hidden { | ||
1640 | + opacity: 0; | ||
1641 | +} | ||
1642 | +/* Common Styles */ | ||
1643 | +.swiper-pagination-fraction, | ||
1644 | +.swiper-pagination-custom, | ||
1645 | +.swiper-container-horizontal > .swiper-pagination-bullets { | ||
1646 | + bottom: 10px; | ||
1647 | + left: 0; | ||
1648 | + width: 100%; | ||
1649 | +} | ||
1650 | +/* Bullets */ | ||
1651 | +.swiper-pagination-bullet { | ||
1652 | + width: 8px; | ||
1653 | + height: 8px; | ||
1654 | + display: inline-block; | ||
1655 | + border-radius: 100%; | ||
1656 | + background: #000; | ||
1657 | + opacity: 0.2; | ||
1658 | +} | ||
1659 | +button.swiper-pagination-bullet { | ||
1660 | + border: none; | ||
1661 | + margin: 0; | ||
1662 | + padding: 0; | ||
1663 | + box-shadow: none; | ||
1664 | + -moz-appearance: none; | ||
1665 | + -ms-appearance: none; | ||
1666 | + -webkit-appearance: none; | ||
1667 | + appearance: none; | ||
1668 | +} | ||
1669 | +.swiper-pagination-clickable .swiper-pagination-bullet { | ||
1670 | + cursor: pointer; | ||
1671 | +} | ||
1672 | +.swiper-pagination-white .swiper-pagination-bullet { | ||
1673 | + background: #fff; | ||
1674 | +} | ||
1675 | +.swiper-pagination-bullet-active { | ||
1676 | + opacity: 1; | ||
1677 | + background: #04BE02; | ||
1678 | +} | ||
1679 | +.swiper-pagination-white .swiper-pagination-bullet-active { | ||
1680 | + background: #fff; | ||
1681 | +} | ||
1682 | +.swiper-pagination-black .swiper-pagination-bullet-active { | ||
1683 | + background: #000; | ||
1684 | +} | ||
1685 | +.swiper-container-vertical > .swiper-pagination-bullets { | ||
1686 | + right: 10px; | ||
1687 | + top: 50%; | ||
1688 | + -webkit-transform: translate3d(0px, -50%, 0); | ||
1689 | + transform: translate3d(0px, -50%, 0); | ||
1690 | +} | ||
1691 | +.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet { | ||
1692 | + margin: 5px 0; | ||
1693 | + display: block; | ||
1694 | +} | ||
1695 | +.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet { | ||
1696 | + margin: 0 5px; | ||
1697 | +} | ||
1698 | +/* Progress */ | ||
1699 | +.swiper-pagination-progress { | ||
1700 | + background: rgba(0, 0, 0, 0.25); | ||
1701 | + position: absolute; | ||
1702 | +} | ||
1703 | +.swiper-pagination-progress .swiper-pagination-progressbar { | ||
1704 | + background: #007aff; | ||
1705 | + position: absolute; | ||
1706 | + left: 0; | ||
1707 | + top: 0; | ||
1708 | + width: 100%; | ||
1709 | + height: 100%; | ||
1710 | + -webkit-transform: scale(0); | ||
1711 | + transform: scale(0); | ||
1712 | + -webkit-transform-origin: left top; | ||
1713 | + transform-origin: left top; | ||
1714 | +} | ||
1715 | +.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar { | ||
1716 | + -webkit-transform-origin: right top; | ||
1717 | + transform-origin: right top; | ||
1718 | +} | ||
1719 | +.swiper-container-horizontal > .swiper-pagination-progress { | ||
1720 | + width: 100%; | ||
1721 | + height: 4px; | ||
1722 | + left: 0; | ||
1723 | + top: 0; | ||
1724 | +} | ||
1725 | +.swiper-container-vertical > .swiper-pagination-progress { | ||
1726 | + width: 4px; | ||
1727 | + height: 100%; | ||
1728 | + left: 0; | ||
1729 | + top: 0; | ||
1730 | +} | ||
1731 | +.swiper-pagination-progress.swiper-pagination-white { | ||
1732 | + background: rgba(255, 255, 255, 0.5); | ||
1733 | +} | ||
1734 | +.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar { | ||
1735 | + background: #fff; | ||
1736 | +} | ||
1737 | +.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar { | ||
1738 | + background: #000; | ||
1739 | +} | ||
1740 | +/* 3D Container */ | ||
1741 | +.swiper-container-3d { | ||
1742 | + -webkit-perspective: 1200px; | ||
1743 | + -o-perspective: 1200px; | ||
1744 | + perspective: 1200px; | ||
1745 | +} | ||
1746 | +.swiper-container-3d .swiper-wrapper, | ||
1747 | +.swiper-container-3d .swiper-slide, | ||
1748 | +.swiper-container-3d .swiper-slide-shadow-left, | ||
1749 | +.swiper-container-3d .swiper-slide-shadow-right, | ||
1750 | +.swiper-container-3d .swiper-slide-shadow-top, | ||
1751 | +.swiper-container-3d .swiper-slide-shadow-bottom, | ||
1752 | +.swiper-container-3d .swiper-cube-shadow { | ||
1753 | + -webkit-transform-style: preserve-3d; | ||
1754 | + transform-style: preserve-3d; | ||
1755 | +} | ||
1756 | +.swiper-container-3d .swiper-slide-shadow-left, | ||
1757 | +.swiper-container-3d .swiper-slide-shadow-right, | ||
1758 | +.swiper-container-3d .swiper-slide-shadow-top, | ||
1759 | +.swiper-container-3d .swiper-slide-shadow-bottom { | ||
1760 | + position: absolute; | ||
1761 | + left: 0; | ||
1762 | + top: 0; | ||
1763 | + width: 100%; | ||
1764 | + height: 100%; | ||
1765 | + pointer-events: none; | ||
1766 | + z-index: 10; | ||
1767 | +} | ||
1768 | +.swiper-container-3d .swiper-slide-shadow-left { | ||
1769 | + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0))); | ||
1770 | + /* Safari 4+, Chrome */ | ||
1771 | + background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1772 | + /* Chrome 10+, Safari 5.1+, iOS 5+ */ | ||
1773 | + /* Firefox 3.6-15 */ | ||
1774 | + /* Opera 11.10-12.00 */ | ||
1775 | + background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1776 | + /* Firefox 16+, IE10, Opera 12.50+ */ | ||
1777 | +} | ||
1778 | +.swiper-container-3d .swiper-slide-shadow-right { | ||
1779 | + background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0))); | ||
1780 | + /* Safari 4+, Chrome */ | ||
1781 | + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1782 | + /* Chrome 10+, Safari 5.1+, iOS 5+ */ | ||
1783 | + /* Firefox 3.6-15 */ | ||
1784 | + /* Opera 11.10-12.00 */ | ||
1785 | + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1786 | + /* Firefox 16+, IE10, Opera 12.50+ */ | ||
1787 | +} | ||
1788 | +.swiper-container-3d .swiper-slide-shadow-top { | ||
1789 | + background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0))); | ||
1790 | + /* Safari 4+, Chrome */ | ||
1791 | + background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1792 | + /* Chrome 10+, Safari 5.1+, iOS 5+ */ | ||
1793 | + /* Firefox 3.6-15 */ | ||
1794 | + /* Opera 11.10-12.00 */ | ||
1795 | + background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1796 | + /* Firefox 16+, IE10, Opera 12.50+ */ | ||
1797 | +} | ||
1798 | +.swiper-container-3d .swiper-slide-shadow-bottom { | ||
1799 | + background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0))); | ||
1800 | + /* Safari 4+, Chrome */ | ||
1801 | + background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1802 | + /* Chrome 10+, Safari 5.1+, iOS 5+ */ | ||
1803 | + /* Firefox 3.6-15 */ | ||
1804 | + /* Opera 11.10-12.00 */ | ||
1805 | + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); | ||
1806 | + /* Firefox 16+, IE10, Opera 12.50+ */ | ||
1807 | +} | ||
1808 | +/* Coverflow */ | ||
1809 | +.swiper-container-coverflow .swiper-wrapper, | ||
1810 | +.swiper-container-flip .swiper-wrapper { | ||
1811 | + /* Windows 8 IE 10 fix */ | ||
1812 | + -ms-perspective: 1200px; | ||
1813 | +} | ||
1814 | +/* Cube + Flip */ | ||
1815 | +.swiper-container-cube, | ||
1816 | +.swiper-container-flip { | ||
1817 | + overflow: visible; | ||
1818 | +} | ||
1819 | +.swiper-container-cube .swiper-slide, | ||
1820 | +.swiper-container-flip .swiper-slide { | ||
1821 | + pointer-events: none; | ||
1822 | + -webkit-backface-visibility: hidden; | ||
1823 | + backface-visibility: hidden; | ||
1824 | + z-index: 1; | ||
1825 | +} | ||
1826 | +.swiper-container-cube .swiper-slide .swiper-slide, | ||
1827 | +.swiper-container-flip .swiper-slide .swiper-slide { | ||
1828 | + pointer-events: none; | ||
1829 | +} | ||
1830 | +.swiper-container-cube .swiper-slide-active, | ||
1831 | +.swiper-container-flip .swiper-slide-active, | ||
1832 | +.swiper-container-cube .swiper-slide-active .swiper-slide-active, | ||
1833 | +.swiper-container-flip .swiper-slide-active .swiper-slide-active { | ||
1834 | + pointer-events: auto; | ||
1835 | +} | ||
1836 | +.swiper-container-cube .swiper-slide-shadow-top, | ||
1837 | +.swiper-container-flip .swiper-slide-shadow-top, | ||
1838 | +.swiper-container-cube .swiper-slide-shadow-bottom, | ||
1839 | +.swiper-container-flip .swiper-slide-shadow-bottom, | ||
1840 | +.swiper-container-cube .swiper-slide-shadow-left, | ||
1841 | +.swiper-container-flip .swiper-slide-shadow-left, | ||
1842 | +.swiper-container-cube .swiper-slide-shadow-right, | ||
1843 | +.swiper-container-flip .swiper-slide-shadow-right { | ||
1844 | + z-index: 0; | ||
1845 | + -webkit-backface-visibility: hidden; | ||
1846 | + backface-visibility: hidden; | ||
1847 | +} | ||
1848 | +/* Cube */ | ||
1849 | +.swiper-container-cube .swiper-slide { | ||
1850 | + visibility: hidden; | ||
1851 | + -webkit-transform-origin: 0 0; | ||
1852 | + transform-origin: 0 0; | ||
1853 | + width: 100%; | ||
1854 | + height: 100%; | ||
1855 | +} | ||
1856 | +.swiper-container-cube.swiper-container-rtl .swiper-slide { | ||
1857 | + -webkit-transform-origin: 100% 0; | ||
1858 | + transform-origin: 100% 0; | ||
1859 | +} | ||
1860 | +.swiper-container-cube .swiper-slide-active, | ||
1861 | +.swiper-container-cube .swiper-slide-next, | ||
1862 | +.swiper-container-cube .swiper-slide-prev, | ||
1863 | +.swiper-container-cube .swiper-slide-next + .swiper-slide { | ||
1864 | + pointer-events: auto; | ||
1865 | + visibility: visible; | ||
1866 | +} | ||
1867 | +.swiper-container-cube .swiper-cube-shadow { | ||
1868 | + position: absolute; | ||
1869 | + left: 0; | ||
1870 | + bottom: 0px; | ||
1871 | + width: 100%; | ||
1872 | + height: 100%; | ||
1873 | + background: #000; | ||
1874 | + opacity: 0.6; | ||
1875 | + -webkit-filter: blur(50px); | ||
1876 | + filter: blur(50px); | ||
1877 | + z-index: 0; | ||
1878 | +} | ||
1879 | +/* Fade */ | ||
1880 | +.swiper-container-fade.swiper-container-free-mode .swiper-slide { | ||
1881 | + -webkit-transition-timing-function: ease-out; | ||
1882 | + transition-timing-function: ease-out; | ||
1883 | +} | ||
1884 | +.swiper-container-fade .swiper-slide { | ||
1885 | + pointer-events: none; | ||
1886 | + -webkit-transition-property: opacity; | ||
1887 | + transition-property: opacity; | ||
1888 | +} | ||
1889 | +.swiper-container-fade .swiper-slide .swiper-slide { | ||
1890 | + pointer-events: none; | ||
1891 | +} | ||
1892 | +.swiper-container-fade .swiper-slide-active, | ||
1893 | +.swiper-container-fade .swiper-slide-active .swiper-slide-active { | ||
1894 | + pointer-events: auto; | ||
1895 | +} | ||
1896 | +/* Scrollbar */ | ||
1897 | +.swiper-scrollbar { | ||
1898 | + border-radius: 10px; | ||
1899 | + position: relative; | ||
1900 | + -ms-touch-action: none; | ||
1901 | + background: rgba(0, 0, 0, 0.1); | ||
1902 | +} | ||
1903 | +.swiper-container-horizontal > .swiper-scrollbar { | ||
1904 | + position: absolute; | ||
1905 | + left: 1%; | ||
1906 | + bottom: 3px; | ||
1907 | + z-index: 50; | ||
1908 | + height: 5px; | ||
1909 | + width: 98%; | ||
1910 | +} | ||
1911 | +.swiper-container-vertical > .swiper-scrollbar { | ||
1912 | + position: absolute; | ||
1913 | + right: 3px; | ||
1914 | + top: 1%; | ||
1915 | + z-index: 50; | ||
1916 | + width: 5px; | ||
1917 | + height: 98%; | ||
1918 | +} | ||
1919 | +.swiper-scrollbar-drag { | ||
1920 | + height: 100%; | ||
1921 | + width: 100%; | ||
1922 | + position: relative; | ||
1923 | + background: rgba(0, 0, 0, 0.5); | ||
1924 | + border-radius: 10px; | ||
1925 | + left: 0; | ||
1926 | + top: 0; | ||
1927 | +} | ||
1928 | +.swiper-scrollbar-cursor-drag { | ||
1929 | + cursor: move; | ||
1930 | +} | ||
1931 | +/* Preloader */ | ||
1932 | +.swiper-lazy-preloader { | ||
1933 | + width: 42px; | ||
1934 | + height: 42px; | ||
1935 | + position: absolute; | ||
1936 | + left: 50%; | ||
1937 | + top: 50%; | ||
1938 | + margin-left: -21px; | ||
1939 | + margin-top: -21px; | ||
1940 | + z-index: 10; | ||
1941 | + -webkit-transform-origin: 50%; | ||
1942 | + transform-origin: 50%; | ||
1943 | + -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite; | ||
1944 | + animation: swiper-preloader-spin 1s steps(12, end) infinite; | ||
1945 | +} | ||
1946 | +.swiper-lazy-preloader:after { | ||
1947 | + display: block; | ||
1948 | + content: ""; | ||
1949 | + width: 100%; | ||
1950 | + height: 100%; | ||
1951 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); | ||
1952 | + background-position: 50%; | ||
1953 | + background-size: 100%; | ||
1954 | + background-repeat: no-repeat; | ||
1955 | +} | ||
1956 | +.swiper-lazy-preloader-white:after { | ||
1957 | + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); | ||
1958 | +} | ||
1959 | +@-webkit-keyframes swiper-preloader-spin { | ||
1960 | + 100% { | ||
1961 | + -webkit-transform: rotate(360deg); | ||
1962 | + } | ||
1963 | +} | ||
1964 | +@keyframes swiper-preloader-spin { | ||
1965 | + 100% { | ||
1966 | + -webkit-transform: rotate(360deg); | ||
1967 | + transform: rotate(360deg); | ||
1968 | + } | ||
1969 | +} | ||
1970 | +.weui-actionsheet { | ||
1971 | + z-index: 10000; | ||
1972 | +} | ||
1973 | +.weui-popup__overlay, | ||
1974 | +.weui-popup__container { | ||
1975 | + position: fixed; | ||
1976 | + bottom: 0; | ||
1977 | + left: 0; | ||
1978 | + right: 0; | ||
1979 | + height: 0; | ||
1980 | + width: 100%; | ||
1981 | + height: 100%; | ||
1982 | + z-index: 10; | ||
1983 | +} | ||
1984 | +.weui-popup__overlay { | ||
1985 | + background-color: rgba(0, 0, 0, 0.6); | ||
1986 | + opacity: 0; | ||
1987 | + -webkit-transition: opacity .3s; | ||
1988 | + transition: opacity .3s; | ||
1989 | +} | ||
1990 | +.weui-popup__container { | ||
1991 | + display: none; | ||
1992 | +} | ||
1993 | +.weui-popup__container.weui-popup__container--visible { | ||
1994 | + display: block; | ||
1995 | +} | ||
1996 | +.weui-popup__container .weui-cells { | ||
1997 | + margin: 0; | ||
1998 | + text-align: left; | ||
1999 | +} | ||
2000 | +.weui-popup__modal { | ||
2001 | + width: 100%; | ||
2002 | + position: absolute; | ||
2003 | + z-index: 100; | ||
2004 | + bottom: 0; | ||
2005 | + border-radius: 0; | ||
2006 | + opacity: 0.6; | ||
2007 | + color: #3d4145; | ||
2008 | + -webkit-transition-duration: .3s; | ||
2009 | + transition-duration: .3s; | ||
2010 | + height: 100%; | ||
2011 | + background: #EFEFF4; | ||
2012 | + -webkit-transform: translate3d(0, 100%, 0); | ||
2013 | + transform: translate3d(0, 100%, 0); | ||
2014 | + -webkit-transition-property: opacity, -webkit-transform; | ||
2015 | + transition-property: opacity, -webkit-transform; | ||
2016 | + transition-property: transform, opacity; | ||
2017 | + transition-property: transform, opacity, -webkit-transform; | ||
2018 | + overflow-x: hidden; | ||
2019 | + overflow-y: auto; | ||
2020 | +} | ||
2021 | +.popup-bottom .weui-popup__modal { | ||
2022 | + height: auto; | ||
2023 | +} | ||
2024 | +.weui-popup__modal .toolbar { | ||
2025 | + position: absolute; | ||
2026 | + left: 0; | ||
2027 | + top: 0; | ||
2028 | + right: 0; | ||
2029 | + z-index: 1; | ||
2030 | +} | ||
2031 | +.weui-popup__modal .modal-content { | ||
2032 | + height: 100%; | ||
2033 | + padding-top: 2.2rem; | ||
2034 | + overflow: auto; | ||
2035 | + box-sizing: border-box; | ||
2036 | +} | ||
2037 | +.weui-popup__container--visible .weui-popup__overlay { | ||
2038 | + opacity: 1; | ||
2039 | +} | ||
2040 | +.weui-popup__container--visible .weui-popup__modal { | ||
2041 | + opacity: 1; | ||
2042 | + -webkit-transform: translate3d(0, 0, 0); | ||
2043 | + transform: translate3d(0, 0, 0); | ||
2044 | +} | ||
2045 | +.weui-notification { | ||
2046 | + position: fixed; | ||
2047 | + width: 100%; | ||
2048 | + min-height: 3.4rem; | ||
2049 | + top: -2rem; | ||
2050 | + padding-top: 2rem; | ||
2051 | + left: 0; | ||
2052 | + right: 0; | ||
2053 | + z-index: 9999; | ||
2054 | + background-color: rgba(0, 0, 0, 0.85); | ||
2055 | + color: white; | ||
2056 | + font-size: .65rem; | ||
2057 | + -webkit-transform: translate3d(0, -100%, 0); | ||
2058 | + transform: translate3d(0, -100%, 0); | ||
2059 | + -webkit-transition: .4s; | ||
2060 | + transition: .4s; | ||
2061 | +} | ||
2062 | +.weui-notification.weui-notification--in { | ||
2063 | + -webkit-transform: translate3d(0, 0, 0); | ||
2064 | + transform: translate3d(0, 0, 0); | ||
2065 | +} | ||
2066 | +.weui-notification.weui-notification--touching { | ||
2067 | + -webkit-transition-duration: 0s; | ||
2068 | + transition-duration: 0s; | ||
2069 | +} | ||
2070 | +.weui-notification .weui-notification__inner { | ||
2071 | + padding: .4rem .6rem 1rem .6rem; | ||
2072 | + display: -webkit-box; | ||
2073 | + display: -ms-flexbox; | ||
2074 | + display: flex; | ||
2075 | + -webkit-box-align: start; | ||
2076 | + -ms-flex-align: start; | ||
2077 | + align-items: flex-start; | ||
2078 | +} | ||
2079 | +.weui-notification .weui-notification__content { | ||
2080 | + width: 100%; | ||
2081 | + margin: 0rem .4rem; | ||
2082 | +} | ||
2083 | +.weui-notification .weui-notification__title { | ||
2084 | + font-weight: bold; | ||
2085 | +} | ||
2086 | +.weui-notification .weui-notification__text { | ||
2087 | + line-height: 1; | ||
2088 | +} | ||
2089 | +.weui-notification .weui-notification__media { | ||
2090 | + height: 1rem; | ||
2091 | + width: 1rem; | ||
2092 | +} | ||
2093 | +.weui-notification .weui-notification__media img { | ||
2094 | + width: 100%; | ||
2095 | +} | ||
2096 | +.weui-notification .weui-notification__handle-bar { | ||
2097 | + position: absolute; | ||
2098 | + bottom: .2rem; | ||
2099 | + left: 50%; | ||
2100 | + -webkit-transform: translate3d(-50%, 0, 0); | ||
2101 | + transform: translate3d(-50%, 0, 0); | ||
2102 | + width: 2rem; | ||
2103 | + height: .3rem; | ||
2104 | + border-radius: .15rem; | ||
2105 | + background: white; | ||
2106 | + opacity: .5; | ||
2107 | +} | ||
2108 | +.weui-photo-browser-modal { | ||
2109 | + position: fixed; | ||
2110 | + top: 0; | ||
2111 | + left: 0; | ||
2112 | + right: 0; | ||
2113 | + bottom: 0; | ||
2114 | + background: black; | ||
2115 | + display: none; | ||
2116 | + opacity: 0; | ||
2117 | + -webkit-transition: opacity .3s; | ||
2118 | + transition: opacity .3s; | ||
2119 | +} | ||
2120 | +.weui-photo-browser-modal.weui-photo-browser-modal-visible { | ||
2121 | + opacity: 1; | ||
2122 | +} | ||
2123 | +.weui-photo-browser-modal .swiper-container { | ||
2124 | + height: 100%; | ||
2125 | + -webkit-transform: scale(0.2); | ||
2126 | + transform: scale(0.2); | ||
2127 | + -webkit-transition: -webkit-transform .5s; | ||
2128 | + transition: -webkit-transform .5s; | ||
2129 | + transition: transform .5s; | ||
2130 | + transition: transform .5s, -webkit-transform .5s; | ||
2131 | +} | ||
2132 | +.weui-photo-browser-modal .swiper-container .swiper-pagination-bullet { | ||
2133 | + background: white; | ||
2134 | + visibility: hidden; | ||
2135 | +} | ||
2136 | +.weui-photo-browser-modal .swiper-container.swiper-container-visible { | ||
2137 | + -webkit-transform: scale(1); | ||
2138 | + transform: scale(1); | ||
2139 | +} | ||
2140 | +.weui-photo-browser-modal .swiper-container.swiper-container-visible .swiper-pagination-bullet { | ||
2141 | + visibility: visible; | ||
2142 | + -webkit-transition-property: visibility; | ||
2143 | + transition-property: visibility; | ||
2144 | + -webkit-transition-delay: .5s; | ||
2145 | + transition-delay: .5s; | ||
2146 | +} | ||
2147 | +.weui-photo-browser-modal .swiper-container .swiper-pagination { | ||
2148 | + bottom: 10px; | ||
2149 | + left: 0; | ||
2150 | + width: 100%; | ||
2151 | +} | ||
2152 | +.weui-photo-browser-modal .photo-container { | ||
2153 | + height: 100%; | ||
2154 | + display: -webkit-box; | ||
2155 | + display: -ms-flexbox; | ||
2156 | + display: flex; | ||
2157 | + -webkit-box-align: center; | ||
2158 | + -ms-flex-align: center; | ||
2159 | + align-items: center; | ||
2160 | + -webkit-box-pack: center; | ||
2161 | + -ms-flex-pack: center; | ||
2162 | + justify-content: center; | ||
2163 | + overflow: hidden; | ||
2164 | +} | ||
2165 | +.weui-photo-browser-modal .photo-container img { | ||
2166 | + max-width: 100%; | ||
2167 | + margin-top: -30px; | ||
2168 | +} | ||
2169 | +.weui-photo-browser-modal .caption { | ||
2170 | + position: absolute; | ||
2171 | + bottom: 40px; | ||
2172 | + left: 0; | ||
2173 | + right: 0; | ||
2174 | + color: white; | ||
2175 | + text-align: center; | ||
2176 | + padding: 0 12px; | ||
2177 | + min-height: 3rem; | ||
2178 | + font-size: 14px; | ||
2179 | + z-index: 10; | ||
2180 | + -webkit-transition: opacity .3s; | ||
2181 | + transition: opacity .3s; | ||
2182 | + -webkit-transition-delay: .5s; | ||
2183 | + transition-delay: .5s; | ||
2184 | + opacity: 0; | ||
2185 | +} | ||
2186 | +.weui-photo-browser-modal .caption .caption-item { | ||
2187 | + display: none; | ||
2188 | + opacity: 0; | ||
2189 | + -webkit-transition: opacity .15s; | ||
2190 | + transition: opacity .15s; | ||
2191 | +} | ||
2192 | +.weui-photo-browser-modal .caption .caption-item.active { | ||
2193 | + display: block; | ||
2194 | + opacity: 1; | ||
2195 | +} | ||
2196 | +.weui-photo-browser-modal .swiper-container-visible .caption { | ||
2197 | + opacity: 1; | ||
2198 | +} | ||
2199 | +.color-primary { | ||
2200 | + color: #04BE02; | ||
2201 | +} | ||
2202 | +.color-danger, | ||
2203 | +.color-error { | ||
2204 | + color: #f6383a; | ||
2205 | +} | ||
2206 | +.color-warning { | ||
2207 | + color: #f60; | ||
2208 | +} | ||
2209 | +.color-success { | ||
2210 | + color: #4cd964; | ||
2211 | +} | ||
2212 | +.bg-primary, | ||
2213 | +.bg-success, | ||
2214 | +.bg-danger, | ||
2215 | +.bg-error, | ||
2216 | +.bg-warning { | ||
2217 | + color: white; | ||
2218 | +} | ||
2219 | +.bg-primary { | ||
2220 | + background-color: #04BE02; | ||
2221 | +} | ||
2222 | +.bg-danger, | ||
2223 | +.bg-error { | ||
2224 | + background-color: #f6383a; | ||
2225 | +} | ||
2226 | +.bg-warning { | ||
2227 | + background-color: #f60; | ||
2228 | +} | ||
2229 | +.bg-success { | ||
2230 | + background-color: #4cd964; | ||
2231 | +} | ||
2232 | +.weui-toptips { | ||
2233 | + z-index: 100; | ||
2234 | + opacity: 0; | ||
2235 | + -webkit-transition: opacity .3s; | ||
2236 | + transition: opacity .3s; | ||
2237 | +} | ||
2238 | +.weui-toptips.weui-toptips_visible { | ||
2239 | + opacity: 1; | ||
2240 | +} | ||
2241 | +.weui-icon_toast { | ||
2242 | + font-size: 55px; | ||
2243 | + color: white; | ||
2244 | + margin-bottom: 6px; | ||
2245 | +} | ||
2246 | +.weui-toast--forbidden .weui-icon_toast { | ||
2247 | + color: #f6383a; | ||
2248 | +} | ||
2249 | +.weui-toast--text { | ||
2250 | + min-height: initial; | ||
2251 | + font-size: 18px; | ||
2252 | + padding: 8px 16px; | ||
2253 | + width: auto; | ||
2254 | + top: 40%; | ||
2255 | +} | ||
2256 | +.weui-toast--text .weui-icon_toast { | ||
2257 | + display: none; | ||
2258 | +} | ||
2259 | +.weui-count { | ||
2260 | + display: inline-block; | ||
2261 | + height: 25px; | ||
2262 | + line-height: 25px; | ||
2263 | +} | ||
2264 | +.weui-count .weui-count__btn { | ||
2265 | + height: 21px; | ||
2266 | + width: 21px; | ||
2267 | + line-height: 21px; | ||
2268 | + display: inline-block; | ||
2269 | + position: relative; | ||
2270 | + border: 1px solid #04BE02; | ||
2271 | + border-radius: 50%; | ||
2272 | + vertical-align: -6px; | ||
2273 | +} | ||
2274 | +.weui-count .weui-count__btn:after, | ||
2275 | +.weui-count .weui-count__btn:before { | ||
2276 | + content: " "; | ||
2277 | + position: absolute; | ||
2278 | + height: 1px; | ||
2279 | + width: 11px; | ||
2280 | + background-color: #04BE02; | ||
2281 | + left: 50%; | ||
2282 | + top: 50%; | ||
2283 | + margin-left: -5.5px; | ||
2284 | +} | ||
2285 | +.weui-count .weui-count__btn:after { | ||
2286 | + height: 11px; | ||
2287 | + width: 1px; | ||
2288 | + margin-top: -5.5px; | ||
2289 | + margin-left: -1px; | ||
2290 | +} | ||
2291 | +.weui-count .weui-count__decrease:after { | ||
2292 | + display: none; | ||
2293 | +} | ||
2294 | +.weui-count .weui-count__increase { | ||
2295 | + background-color: #04BE02; | ||
2296 | +} | ||
2297 | +.weui-count .weui-count__increase:after, | ||
2298 | +.weui-count .weui-count__increase:before { | ||
2299 | + background-color: white; | ||
2300 | +} | ||
2301 | +.weui-count .weui-count__number { | ||
2302 | + background-color: transparent; | ||
2303 | + font-size: .8rem; | ||
2304 | + border: 0; | ||
2305 | + width: 1.3rem; | ||
2306 | + text-align: center; | ||
2307 | + color: #5f646e; | ||
2308 | +} | ||
2309 | +.weui-panel .weui-media-box__title-after { | ||
2310 | + color: #9b9b9b; | ||
2311 | + font-size: .65rem; | ||
2312 | + float: right; | ||
2313 | +} |
css/myorder/evaluate.css
0 → 100644
1 | +.container{ | ||
2 | + position: relative; | ||
3 | + font-family:PingFangSC-Regular; | ||
4 | + padding: 0.56rem 0.4rem 0; | ||
5 | +} | ||
6 | +.evaluate_textbox{ | ||
7 | + position: relative; | ||
8 | + border-bottom: 1px solid #E4E4E4; | ||
9 | +} | ||
10 | +.evaluate_textbox textarea{ | ||
11 | + width: 100%; | ||
12 | + height: 4.1rem; | ||
13 | + border: none; | ||
14 | + resize: none; | ||
15 | + font-size: 0.28rem; | ||
16 | + padding-top: 10px; | ||
17 | + color:#999999; | ||
18 | + | ||
19 | + | ||
20 | +} | ||
21 | +.limit{ | ||
22 | + font-size: 0.26rem; | ||
23 | + color: #999999; | ||
24 | + position: absolute; | ||
25 | + right: 0.4rem; | ||
26 | + bottom: 0.36rem; | ||
27 | +} | ||
28 | +.limit_text{ | ||
29 | + font-size: 0.26rem; | ||
30 | + color: #999999; | ||
31 | + margin-top: 0.36rem; | ||
32 | +} | ||
33 | + | ||
34 | +/*图片列表*/ | ||
35 | +.evaluate_pic_list{ | ||
36 | + display: flex; | ||
37 | + margin-top: 0.43rem; | ||
38 | +} | ||
39 | +.evaluate_pic_item img{ | ||
40 | + width: 100%; | ||
41 | + height: 100%; | ||
42 | +} | ||
43 | +.evaluate_pic_item .icon{ | ||
44 | + content: ''; | ||
45 | + display: block; | ||
46 | + width: 0.32rem; | ||
47 | + height: 0.32rem; | ||
48 | + position: absolute; | ||
49 | + right: 0rem; | ||
50 | + top: -0.74rem; | ||
51 | +} | ||
52 | +.evaluate_pic_item{ | ||
53 | + margin-right: 0.5rem; | ||
54 | + height: 1.8rem; | ||
55 | + width: 1.7rem; | ||
56 | + position: relative; | ||
57 | + z-index: 1; | ||
58 | +} | ||
59 | +.evaluate_pic_item:last-child{ | ||
60 | + margin-right: 0; | ||
61 | +} | ||
62 | +.evaluate_pic_itembox{ | ||
63 | + width: 1.8rem; | ||
64 | + height: 1.8rem; | ||
65 | + border: 1px dotted #CCCCCC; | ||
66 | + background: url(../../img/3@2x.png) top no-repeat; | ||
67 | + background-position:0.66rem 0.5rem; | ||
68 | + background-size: 0.56rem 0.49rem; | ||
69 | + text-align: center; | ||
70 | +} | ||
71 | +.evaluate_pic_itembox p{ | ||
72 | + font-size: 0.24rem; | ||
73 | + color: #999999; | ||
74 | + margin-top: 1.1rem; | ||
75 | + margin-left: 0.05rem; | ||
76 | +} | ||
77 | + | ||
78 | +/*footer*/ | ||
79 | +.footer{ | ||
80 | + font-size: 0.3rem; | ||
81 | + color: #333333; | ||
82 | + display: block; | ||
83 | + width: 2rem; | ||
84 | + height: 0.72rem; | ||
85 | + background-color: #FFCC00; | ||
86 | + margin: 0 auto; | ||
87 | + line-height: 0.72rem; | ||
88 | + text-align: center; | ||
89 | + border-radius: 0.36rem; | ||
90 | + margin-top: 1.12rem; | ||
91 | +} | ||
92 | + | ||
93 | + |
-
请 注册 或 登录 后发表评论