-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path结算页面.html
executable file
·841 lines (747 loc) · 23.1 KB
/
结算页面.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
<!DOCTYPE html>
<html lang="cn">
<head>
<title>结算页面</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script>
<link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet">
<script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script>
<style>
body {
font-size: 12px;
font-family: Arial;
}
.redColor {
color: #C40000 !important;
}
nav.top {
background-color: #f2f2f2;
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px solid #e7e7e7;
}
nav.top span, nav.top a {
color: #999999;
margin: 0px 10px 0px 10px;
}
nav.top a:hover {
color: #C40000;
text-decoration: none;
}
.simpleSearchDiv {
background-color: #C40000;
margin: 10px 20px 40px 0;
width: 300px;
height: 40px;
display: block;
padding: 1px;
}
.simpleSearchDiv input {
width: 225px;
height: 34px;
margin: 2px;
border: 1px solid transparent;
outline: none;
padding-left: 10px;
}
.simpleSearchDiv button {
width: 60px;
background-color: #C40000;
font-size: 14px;
color: white;
border: 1px solid transparent;
vertical-align: middle;
outline: none;
}
img.simpleLogo {
position: absolute;
top: 50px;
left: 10px;
width: 140px;
}
.searchBelow {
margin-top: 3px;
margin-left: -20px;
}
.searchBelow span {
color: #999999;
}
.searchBelow a {
padding: 0 20px 0 20px;
font-size: 14px;
}
a {
color: #999999;
}
a:hover {
color: #C40000;
text-decoration: none;
}
.searchDiv {
background-color: #C40000;
width: 400px;
height: 40px;
padding: 1px;
display: block;
margin: 50px auto;
}
.searchDiv input {
width: 275px;
height: 36px;
margin: 1px;
border: 1px solid transparent;
outline: none;
padding-left: 10px;
}
.searchDiv button {
width: 110px;
border: 1px solid transparent;
background-color: #C40000;
outline: none;
color: white;
font-size: 20px;
font-weight: bold;
vertical-align: middle;
}
.searchBelow {
margin-top: 3px;
margin-left: -20px;
}
.searchBelow span {
color: #999999;
}
.searchBelow a {
padding: 0 20px 0 20px;
font-size: 14px;
}
img.logo {
position: absolute;
left: 0px;
top: 30px;
z-index: -1;
}
div.footer {
margin: 0px 0px;
border-top: 1px solid #e7e7e7;
}
div.footer_ensure {
margin: 24px 0 24px 0;
text-align: center;
}
div.footer_desc {
border-top: 1px solid #e7e7e7;
margin: 0px 20px;
padding-top: 30px;
}
div.footer_desc div.descColumn {
width: 20%;
float: left;
padding-left: 15px;
}
div.footer_desc div.descColumn span.descColumnTitle {
color: #646464;
font-weight: bold;
font-size: 16px;
}
div.footer_desc a {
display: block;
padding-top: 3px;
}
div.copyright {
background-color: #000000;
border-top: 2px solid #C40000;
}
div.copyright span.slash {
color: #ffffff;
}
div.footer div.copyright div.white_link a {
color: #ffffff;
padding: 0px 5px;
}
div.footer div.copyright div.white_link {
padding: 10px 0px;
margin-left: 10px;
}
div.license {
margin-left: 10px;
padding-bottom: 30px;
}
div.license span {
color: #A4A4A4;
}
div.license div.copyRightYear {
margin: 10px 0;
color: #686868;
}
img.cateye {
margin-left: 20px;
}
div.buyPageDiv {
margin: 20px auto;
max-width: 1013px;
}
div.addressTip, div.productListTip {
color: #333333;
font-size: 16px;
font-weight: bold;
text-align: left;
margin-bottom: 30px;
}
table.productListTable {
width: 100%;
border-collapse: collapse;
font-size: 12px;
}
table.productListTable th {
color: #999999;
font-family: 宋体;
font-weight: normal;
font-size: 12px;
text-align: center;
padding-bottom: 5px;
}
table.productListTable tr.rowborder td {
background-color: #B2D1FF;
border-right: 2px solid #FFFFFF;
height: 3px;
}
th.productListTableFirstColumn {
text-align: left !important;
}
img.tmallbuy {
width: 15px;
}
a.marketLink {
color: black;
font-size: 12px;
font-family: 宋体;
font-weight: normal;
}
a.marketLink:hover {
color: black;
font-size: 12px;
text-decoration: none;
font-family: 宋体;
font-weight: normal;
}
span.wangwangGif {
display: inline-block;
width: 25px;
height: 25px;
background-image: url("https://how2j.cn/tmall/img/site/wangwang.gif");
background-repeat: no-repeat;
background-color: transparent;
background-attachment: scroll;
background-position: -83px -0px;
position: relative;
top: 8px;
left: 2px;
}
tbody.productListTableTbody td {
text-align: center;
}
tbody.productListTableTbody td.orderItemFirstTD {
text-align: left;
}
tr.orderItemTR td {
border-bottom: 1px solid #E5E5E5;
padding: 10px 0;
}
img.orderItemImg {
width: 50px;
height: 50px;
border: 1px solid #E9E9E9;
}
td.orderItemProductInfo {
text-align: left !important;
}
td.orderItemProductInfo img {
height: 16px;
}
a.orderItemProductLink {
color: #666666;
display: block;
}
a.orderItemProductLink:hover {
color: #666666;
text-decoration: underline;
}
span.orderItemProductPrice, span.orderItemProductNumber {
color: #000000;
}
span.orderItemUnitSum {
color: #CC0000;
font-weight: bold;
}
td.orderItemFirstTD, td.orderItemLastTD {
border-bottom: 0px solid black !important;
}
label.orderItemDeliveryLabel {
color: #666666;
font-family: 宋体;
font-size: 12px;
font-weight: normal;
}
select.orderItemDeliverySelect {
width: 100px;
height: 23px;
}
div.orderItemSumDiv {
background-color: #F2F6FF;
padding: 20px;
border-top: 2px solid #B4D0FF;
height: 50px;
}
div.orderItemSumDiv span {
color: #999999;
}
span.leaveMessageText {
display: inline-block;
margin-right: 10px;
float: left;
}
div.orderItemTotalSumDiv {
margin: 40px;
height: 40px;
}
div.submitOrderDiv {
height: 40px;
margin: 20px 0;
}
div.orderItemTotalSumDiv span {
color: #999999;
}
span.orderItemTotalSumSpan {
color: #C40000 !important;
font-size: 22px;
font-weight: bold;
border-bottom: 1px dotted #F2F6FF;
}
button.submitOrderButton {
border: 1px solid #C40000;
background-color: #C40000;
text-align: center;
line-height: 40px;
font-size: 14px;
font-weight: bold;
color: white;
float: right;
display: inline-block;
margin: 0 10px;
width: 180px;
height: 40px;
}
div.buyPageDiv {
margin: 20px auto;
}
div.address {
margin: 20px 5px;
text-align: left;
}
div.addressTip, div.productListTip {
color: #333333;
font-size: 16px;
font-weight: bold;
text-align: left;
margin-bottom: 30px;
}
table.addressTable {
margin: 20px 20px;
width: 600px;
}
table.addressTable td.firstColumn {
width: 100px;
}
table.addressTable td {
color: #333333;
vertical-align: top;
padding-right: 5px;
text-align: left;
height: 30px;
font-size:12px;
}
table.addressTable td textarea {
border: 1px solid #AFAFAF;
margin-bottom: 10px;
width: 400px;
}
table.addressTable td input {
border: 1px solid #AFAFAF;
width: 200px;
}
span.redStar {
color: red;
font-size: 8px;
}
</style>
<script>
function formatMoney(num) {
num = num.toString().replace(/\$|\,/g, '');
if (isNaN(num))
num = "0";
sign = (num == (num = Math.abs(num)));
num = Math.floor(num * 100 + 0.50000000001);
cents = num % 100;
num = Math.floor(num / 100).toString();
if (cents < 10)
cents = "0" + cents;
for (var i = 0; i < Math.floor((num.length - (1 + i)) / 3); i++)
num = num.substring(0, num.length - (4 * i + 3)) + ',' +
num.substring(num.length - (4 * i + 3));
return (((sign) ? '' : '-') + num + '.' + cents);
}
function checkEmpty(id, name) {
var value = $("#" + id).val();
if (value.length == 0) {
$("#" + id)[0].focus();
return false;
}
return true;
}
$(function () {
$("a.productDetailTopReviewLink").click(function () {
$("div.productReviewDiv").show();
$("div.productDetailDiv").hide();
});
$("a.productReviewTopPartSelectedLink").click(function () {
$("div.productReviewDiv").hide();
$("div.productDetailDiv").show();
});
$("span.leaveMessageTextareaSpan").hide();
$("img.leaveMessageImg").click(function () {
$(this).hide();
$("span.leaveMessageTextareaSpan").show();
$("div.orderItemSumDiv").css("height", "100px");
});
$("div#footer a[href$=#nowhere]").click(function () {
alert("模仿天猫的连接,并没有跳转到实际的页面");
});
$("a.wangwanglink").click(function () {
alert("模仿旺旺的图标,并不会打开旺旺");
});
$("a.notImplementLink").click(function () {
alert("这个功能没做,蛤蛤~");
});
});
</script>
</head>
<body>
<nav class="top">
<a href="#nowhere">
<span class="glyphicon glyphicon-home redColor"></span>
天猫首页
</a>
<span>喵,欢迎来到天猫</span>
<a href="#nowhere">请登录</a>
<a href="#nowhere">免费注册</a>
<span class="pull-right">
<a href="#nowhere">我的订单</a>
<a href="#nowhere">
<span class="glyphicon glyphicon-shopping-cart redColor"></span>
购物车<storage>0</storage>件
</a>
</span>
</nav>
<div class="buyPageDiv">
<form method="post">
<div class="buyFlow">
<img class="pull-left" src="http://how2j.cn/tmall/img/site/simpleLogo.png">
<img class="pull-right" src="http://how2j.cn/tmall/img/site/buyflow.png">
<div style="clear:both"></div>
</div>
<div class="address">
<div class="addressTip">输入收货地址</div>
<div>
<table class="addressTable">
<tr>
<td class="firstColumn">详细地址<span class="redStar">*</span></td>
<td><textarea name="address" placeholder="建议您如实填写详细收货地址,例如接到名称,门牌好吗,楼层和房间号等信息"></textarea>
</td>
</tr>
<tr>
<td>邮政编码</td>
<td><input name="post" placeholder="如果您不清楚邮递区号,请填写000000" type="text"></td>
</tr>
<tr>
<td>收货人姓名<span class="redStar">*</span></td>
<td><input name="receiver" placeholder="长度不超过25个字符" type="text"></td>
</tr>
<tr>
<td>手机号码 <span class="redStar">*</span></td>
<td><input name="mobile" placeholder="请输入11位手机号码" type="text"></td>
</tr>
</table>
</div>
</div>
<div class="productList">
<div class="productListTip">确认订单信息</div>
<table class="productListTable">
<thead>
<tr>
<th class="productListTableFirstColumn" colspan="2">
<img class="tmallbuy" src="http://how2j.cn/tmall/img/site/tmallbuy.png">
<a class="marketLink" href="#nowhere">店铺:天猫店铺</a>
<a class="wangwanglink" href="#nowhere"> <span class="wangwangGif"></span> </a>
</th>
<th>单价</th>
<th>数量</th>
<th>小计</th>
<th>配送方式</th>
</tr>
<tr class="rowborder">
<td colspan="2"></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</thead>
<tbody class="productListTableTbody">
<tr class="orderItemTR">
<td class="orderItemFirstTD"><img class="orderItemImg"
src="http://how2j.cn/tmall/img/productSingle_middle/3752.jpg">
</td>
<td class="orderItemProductInfo">
<a class="orderItemProductLink" href="#nowhere">
洁霸BF522多功能洗地机刷地机酒店家用地毯清洗机 擦地机抛光机
</a>
<img src="http://how2j.cn/tmall/img/site/creditcard.png" title="支持信用卡支付">
<img src="http://how2j.cn/tmall/img/site/7day.png" title="消费者保障服务,承诺7天退货">
<img src="http://how2j.cn/tmall/img/site/promise.png" title="消费者保障服务,承诺如实描述">
</td>
<td>
<span class="orderItemProductPrice">¥1,235.00</span>
</td>
<td>
<span class="orderItemProductNumber">4</span>
</td>
<td><span class="orderItemUnitSum">
¥4,940.00
</span></td>
<td class="orderItemLastTD" rowspan="5">
<label class="orderItemDeliveryLabel">
<input checked="checked" type="radio" value="">
普通配送
</label>
<select class="orderItemDeliverySelect" class="form-control">
<option>快递 免邮费</option>
</select>
</td>
</tr>
<tr class="orderItemTR">
<td class="orderItemFirstTD"><img class="orderItemImg"
src="http://how2j.cn/tmall/img/productSingle_middle/3182.jpg">
</td>
<td class="orderItemProductInfo">
<a class="orderItemProductLink" href="#nowhere">
两轮平衡车双轮儿童思维漂移电动扭扭车智能滑板车成人体感代步车
</a>
<img src="http://how2j.cn/tmall/img/site/creditcard.png" title="支持信用卡支付">
<img src="http://how2j.cn/tmall/img/site/7day.png" title="消费者保障服务,承诺7天退货">
<img src="http://how2j.cn/tmall/img/site/promise.png" title="消费者保障服务,承诺如实描述">
</td>
<td>
<span class="orderItemProductPrice">¥755.65</span>
</td>
<td>
<span class="orderItemProductNumber">1</span>
</td>
<td><span class="orderItemUnitSum">
¥755.65
</span></td>
</tr>
<tr class="orderItemTR">
<td class="orderItemFirstTD"><img class="orderItemImg"
src="http://how2j.cn/tmall/img/productSingle_middle/1917.jpg">
</td>
<td class="orderItemProductInfo">
<a class="orderItemProductLink" href="#nowhere">
依然美佳欧式布艺沙发组合可拆洗新款实木雕花大户型奢华别墅家具
</a>
<img src="http://how2j.cn/tmall/img/site/creditcard.png" title="支持信用卡支付">
<img src="http://how2j.cn/tmall/img/site/7day.png" title="消费者保障服务,承诺7天退货">
<img src="http://how2j.cn/tmall/img/site/promise.png" title="消费者保障服务,承诺如实描述">
</td>
<td>
<span class="orderItemProductPrice">¥7,008.40</span>
</td>
<td>
<span class="orderItemProductNumber">1</span>
</td>
<td><span class="orderItemUnitSum">
¥7,008.40
</span></td>
</tr>
</tbody>
</table>
<div class="orderItemSumDiv">
<div class="pull-left">
<span class="leaveMessageText">给卖家留言:</span>
<span>
<img class="leaveMessageImg" src="http://how2j.cn/tmall/img/site/leaveMessage.png">
</span>
<span class="leaveMessageTextareaSpan">
<textarea class="leaveMessageTextarea" name="userMessage"></textarea>
<div>
<span>还可以输入200个字符</span>
</div>
</span>
</div>
<span class="pull-right">店铺合计(含运费): ¥12,704.05</span>
</div>
</div>
<div class="orderItemTotalSumDiv">
<div class="pull-right">
<span>实付款:</span>
<span class="orderItemTotalSumSpan">¥12,704.05</span>
</div>
</div>
<div class="submitOrderDiv">
<button class="submitOrderButton" type="button">提交订单</button>
</div>
</form>
</div>
<div class="modal " id="loginModal" role="dialog" tabindex="-1">
<div class="modal-dialog loginDivInProductPageModalDiv">
<div class="modal-content">
<div class="loginDivInProductPage">
<div class="loginErrorMessageDiv">
<div class="alert alert-danger">
<button aria-label="Close" class="close" data-dismiss="alert" type="button"></button>
<span class="errorMessage"></span>
</div>
</div>
<div class="login_acount_text">账户登录</div>
<div class="loginInput ">
<span class="loginInputIcon ">
<span class=" glyphicon glyphicon-user"></span>
</span>
<input id="name" name="name" placeholder="手机/会员名/邮箱" type="text">
</div>
<div class="loginInput ">
<span class="loginInputIcon ">
<span class=" glyphicon glyphicon-lock"></span>
</span>
<input id="password" name="password" placeholder="密码" type="password" type="text">
</div>
<span class="text-danger">不要输入真实的天猫账号密码</span><br><br>
<div>
<a href="#nowhere">忘记登录密码</a>
<a class="pull-right" href="#nowhere">免费注册</a>
</div>
<div style="margin-top:20px">
<button class="btn btn-block redButton loginSubmitButton" type="button">登录</button>
</div>
</div>
</div>
</div>
</div>
<div class="modal" id="deleteConfirmModal" role="dialog" tabindex="-1">
<div class="modal-dialog deleteConfirmModalDiv">
<div class="modal-content">
<div class="modal-header">
<button class="close" data-dismiss="modal" type="button"><span aria-hidden="true">×</span><span
class="sr-only">Close</span></button>
<h4 class="modal-title">确认删除?</h4>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" type="button">关闭</button>
<button class="btn btn-primary deleteConfirmButton" id="submit" type="button">确认</button>
</div>
</div>
</div>
</div>
<div class="footer" id="footer" style="display: block;">
<div class="footer_ensure" id="footer_ensure">
<a href="#nowhere">
<img src="https://how2j.cn/tmall/img/site/ensure.png">
</a>
</div>
<div class="footer_desc" id="footer_desc">
<div class="descColumn">
<span class="descColumnTitle">购物指南</span>
<a href="#nowhere">免费注册</a>
<a href="#nowhere">开通支付宝</a>
<a href="#nowhere">支付宝充值</a>
</div>
<div class="descColumn">
<span class="descColumnTitle">天猫保障</span>
<a href="#nowhere">发票保障</a>
<a href="#nowhere">售后规则</a>
<a href="#nowhere">缺货赔付</a>
</div>
<div class="descColumn">
<span class="descColumnTitle">支付方式</span>
<a href="#nowhere">快捷支付</a>
<a href="#nowhere">信用卡</a>
<a href="#nowhere">蚂蚁花呗</a>
<a href="#nowhere">货到付款</a>
</div>
<div class="descColumn">
<span class="descColumnTitle">商家服务</span>
<a href="#nowhere">商家入驻</a>
<a href="#nowhere">商家中心</a>
<a href="#nowhere">天猫智库</a>
<a href="#nowhere">天猫规则</a>
<a href="#nowhere">物流服务</a>
<a href="#nowhere">喵言喵语</a>
<a href="#nowhere">运营服务</a>
</div>
<div class="descColumn">
<span class="descColumnTitle">手机天猫</span>
<a href="#nowhere"><img src="https://how2j.cn/tmall/img/site/ma.png"></a>
</div>
</div>
<div style="clear:both"></div>
<img class="cateye" id="cateye" src="https://how2j.cn/tmall/img/site/cateye.png">
<div class="copyright" id="copyright">
<div class="white_link">
<a href="#nowhere">关于天猫</a>
<a href="#nowhere"> 帮助中心</a>
<a href="#nowhere">开放平台</a>
<a href="#nowhere"> 诚聘英才</a>
<a href="#nowhere">联系我们</a>
<a href="#nowhere">网站合作</a>
<a href="#nowhere">法律声明</a>
<a href="#nowhere">知识产权</a>
<a href="#nowhere"> 廉正举报 </a>
</div>
<div class="white_link">
<a href="#nowhere"> 阿里巴巴集团</a><span class="slash">|</span>
<a href="#nowhere"> 淘宝网</a><span class="slash">|</span>
<a href="#nowhere">天猫 </a><span class="slash">|</span>
<a href="#nowhere"> 聚划算</a><span class="slash">|</span>
<a href="#nowhere">全球速卖通</a><span class="slash">|</span>
<a href="#nowhere">阿里巴巴国际交易市场</a><span class="slash">|</span>
<a href="#nowhere">1688</a><span class="slash">|</span>
<a href="#nowhere">阿里妈妈</a><span class="slash">|</span>
<a href="#nowhere"> 阿里旅行·去啊 </a><span class="slash">|</span>
<a href="#nowhere"> 阿里云计算 </a><span class="slash">|</span>
<a href="#nowhere"> 阿里通信 </a><span class="slash">|</span>
<a href="#nowhere"> YunOS </a><span class="slash">|</span>
<a href="#nowhere"> 阿里旅行·去啊 </a><span class="slash">|</span>
<a href="#nowhere"> 万网 </a><span class="slash">|</span>
<a href="#nowhere"> 高德 </a><span class="slash">|</span>
<a href="#nowhere"> 优视 </a><span class="slash">|</span>
<a href="#nowhere"> 友盟 </a><span class="slash">|</span>
<a href="#nowhere"> 虾米 </a><span class="slash">|</span>
<a href="#nowhere"> 天天动听 </a><span class="slash">|</span>
<a href="#nowhere"> 来往 </a><span class="slash">|</span>
<a href="#nowhere"> 钉钉 </a><span class="slash">|</span>
<a href="#nowhere"> 支付宝 </a>
</div>
<div class="license">
<span>增值电信业务经营许可证: 浙B2-20110446</span>
<span>网络文化经营许可证:浙网文[2015]0295-065号</span>
<span>互联网医疗保健信息服务 审核同意书 浙卫网审【2014】6号 </span>
<span>互联网药品信息服务资质证书编号:浙-(经营性)-2012-0005</span>
<div class="copyRightYear">© 2003-2016 TMALL.COM 版权所有</div>
<div>
<img src="https://how2j.cn/tmall/img/site/copyRight1.jpg">
<img src="https://how2j.cn/tmall/img/site/copyRight2.jpg">
</div>
</div>
</div>
</div>
</body>
</html>