-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1121 lines (1076 loc) · 47.5 KB
/
index.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
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class='v2' dir='ltr' lang='zh-CN' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='width=1100' name='viewport'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='blogger' name='generator'/>
<link href='https://www.awsdo.com/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://www.awsdo.com/p/cloud-servers.html' rel='canonical'/>
<link rel="alternate" type="application/atom+xml" title="日本,新加坡,韩国,英国,美国,香港,台湾,云服务器,住宅IP电脑,高性能C5云主机,AWS,Amazon Web Service 折扣 代付账单 组织 远程办公AWS WORKSPACE - Atom" href="https://www.awsdo.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="日本,新加坡,韩国,英国,美国,香港,台湾,云服务器,住宅IP电脑,高性能C5云主机,AWS,Amazon Web Service 折扣 代付账单 组织 远程办公AWS WORKSPACE - RSS" href="https://www.awsdo.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="日本,新加坡,韩国,英国,美国,香港,台湾,云服务器,住宅IP电脑,高性能C5云主机,AWS,Amazon Web Service 折扣 代付账单 组织 远程办公AWS WORKSPACE - Atom" href="https://www.blogger.com/feeds/8785980778162940211/posts/default" />
<!--Can't find substitution for tag [blog.ieCssRetrofitLinks]-->
<meta content='https://www.awsdo.com/p/cloud-servers.html' property='og:url'/>
<meta content='日本,新加坡,韩国,英国,美国,香港,台湾,云服务器,住宅IP电脑,高性能C5云主机,AWS,Amazon Web Service 折扣 代付账单 组织 远程办公AWS WORKSPACE' property='og:title'/>
<meta content=' 来自AWSDO.COM的T2实例是能提供基础的CPU性能和配套设备,采用按月付费的购买方式,是适合初学者的入门级选项,非常适合各种通用应用程序,如微服务、低延迟交互应用程序、中小型数据库、虚拟桌面、开发-构建-阶段环境、代码存储库,以及产品原型。 T2 实例是突发性...' property='og:description'/>
<meta content='https://lh3.googleusercontent.com/blogger_img_proxy/ALY8t1uHU4cWogCt0A_b9rXcFEIgZ2WWb_7I3M2TD2GmTcHECWoUBYRWcz6g6VfMbFDYL882IaOX8gIMOj4p4bIg8psL8oB-uWqPAAU8jw36hIMi5Q=w1200-h630-p-k-no-nu' property='og:image'/>
<title>日本,新加坡,韩国,英国,美国,香港,台湾,云服务器,住宅IP电脑,高性能C5云主机,AWS,Amazon Web Service 折扣 代付账单 组织 远程办公AWS WORKSPACE</title>
<style id='page-skin-1' type='text/css'><!--
/*-----------------------------------------------
Blogger Template Style
Name: Picture Window
Designer: Blogger
URL: www.blogger.com
----------------------------------------------- */
/* Variable definitions
====================
<Variable name="keycolor" description="Main Color" type="color" default="#1a222a"/>
<Variable name="body.background" description="Body Background" type="background"
color="#3367ba" default="#111111 url(//https://hosting.sunke.info/files/picture-11.jpg) repeat-x fixed top center"/>
<Group description="Page Text" selector="body">
<Variable name="body.font" description="Font" type="font"
default="normal normal 15px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#333333"/>
</Group>
<Group description="Backgrounds" selector=".body-fauxcolumns-outer">
<Variable name="body.background.color" description="Outer Background" type="color" default="#296695"/>
<Variable name="header.background.color" description="Header Background" type="color" default="transparent"/>
<Variable name="post.background.color" description="Post Background" type="color" default="#ffffff"/>
</Group>
<Group description="Links" selector=".main-outer">
<Variable name="link.color" description="Link Color" type="color" default="#336699"/>
<Variable name="link.visited.color" description="Visited Color" type="color" default="#6699cc"/>
<Variable name="link.hover.color" description="Hover Color" type="color" default="#33aaff"/>
</Group>
<Group description="Blog Title" selector=".header h1">
<Variable name="header.font" description="Title Font" type="font"
default="normal normal 36px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
<Variable name="header.text.color" description="Text Color" type="color" default="#ffffff" />
</Group>
<Group description="Tabs Text" selector=".tabs-inner .widget li a">
<Variable name="tabs.font" description="Font" type="font"
default="normal normal 15px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
<Variable name="tabs.text.color" description="Text Color" type="color" default="#ffffff"/>
<Variable name="tabs.selected.text.color" description="Selected Color" type="color" default="#3e65b9"/>
</Group>
<Group description="Tabs Background" selector=".tabs-outer .PageList">
<Variable name="tabs.background.color" description="Background Color" type="color" default="transparent"/>
<Variable name="tabs.selected.background.color" description="Selected Color" type="color" default="transparent"/>
<Variable name="tabs.separator.color" description="Separator Color" type="color" default="transparent"/>
</Group>
<Group description="Post Title" selector="h3.post-title, .comments h4">
<Variable name="post.title.font" description="Title Font" type="font"
default="normal normal 18px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
</Group>
<Group description="Date Header" selector=".date-header">
<Variable name="date.header.color" description="Text Color" type="color" default="#626262"/>
</Group>
<Group description="Post" selector=".post">
<Variable name="post.footer.text.color" description="Footer Text Color" type="color" default="#999999"/>
<Variable name="post.border.color" description="Border Color" type="color" default="#dddddd"/>
</Group>
<Group description="Gadgets" selector="h2">
<Variable name="widget.title.font" description="Title Font" type="font"
default="bold normal 13px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
<Variable name="widget.title.text.color" description="Title Color" type="color" default="#888888"/>
</Group>
<Group description="Footer" selector=".footer-outer">
<Variable name="footer.text.color" description="Text Color" type="color" default="#cccccc"/>
<Variable name="footer.widget.title.text.color" description="Gadget Title Color" type="color" default="#aaaaaa"/>
</Group>
<Group description="Footer Links" selector=".footer-outer">
<Variable name="footer.link.color" description="Link Color" type="color" default="#99ccee"/>
<Variable name="footer.link.visited.color" description="Visited Color" type="color" default="#77aaee"/>
<Variable name="footer.link.hover.color" description="Hover Color" type="color" default="#33aaff"/>
</Group>
<Variable name="content.margin" description="Content Margin Top" type="length" default="20px" min="0" max="100px"/>
<Variable name="content.padding" description="Content Padding" type="length" default="0" min="0" max="100px"/>
<Variable name="content.background" description="Content Background" type="background"
default="transparent none repeat scroll top left"/>
<Variable name="content.border.radius" description="Content Border Radius" type="length" default="0" min="0" max="100px"/>
<Variable name="content.shadow.spread" description="Content Shadow Spread" type="length" default="0" min="0" max="100px"/>
<Variable name="header.padding" description="Header Padding" type="length" default="0" min="0" max="100px"/>
<Variable name="header.background.gradient" description="Header Gradient" type="url"
default="none"/>
<Variable name="header.border.radius" description="Header Border Radius" type="length" default="0" min="0" max="100px"/>
<Variable name="main.border.radius.top" description="Main Border Radius" type="length" default="20px" min="0" max="100px"/>
<Variable name="footer.border.radius.top" description="Footer Border Radius Top" type="length" default="0" min="0" max="100px"/>
<Variable name="footer.border.radius.bottom" description="Footer Border Radius Bottom" type="length" default="20px" min="0" max="100px"/>
<Variable name="region.shadow.spread" description="Main and Footer Shadow Spread" type="length" default="3px" min="0" max="100px"/>
<Variable name="region.shadow.offset" description="Main and Footer Shadow Offset" type="length" default="1px" min="-50px" max="50px"/>
<Variable name="tabs.background.gradient" description="Tab Background Gradient" type="url" default="none"/>
<Variable name="tab.selected.background.gradient" description="Selected Tab Background" type="url"
default="url(https://hosting.sunke.info/files/white80.png)"/>
<Variable name="tab.background" description="Tab Background" type="background"
default="transparent url(https://hosting.sunke.info/files/black50.png) repeat scroll top left"/>
<Variable name="tab.border.radius" description="Tab Border Radius" type="length" default="10px" min="0" max="100px"/>
<Variable name="tab.first.border.radius" description="First Tab Border Radius" type="length" default="10px" min="0" max="100px"/>
<Variable name="tabs.border.radius" description="Tabs Border Radius" type="length" default="0" min="0" max="100px"/>
<Variable name="tabs.spacing" description="Tab Spacing" type="length" default=".25em" min="0" max="10em"/>
<Variable name="tabs.margin.bottom" description="Tab Margin Bottom" type="length" default="0" min="0" max="100px"/>
<Variable name="tabs.margin.sides" description="Tab Margin Sides" type="length" default="20px" min="0" max="100px"/>
<Variable name="main.background" description="Main Background" type="background"
default="transparent url(https://hosting.sunke.info/files/white80.png) repeat scroll top left"/>
<Variable name="main.padding.sides" description="Main Padding Sides" type="length" default="20px" min="0" max="100px"/>
<Variable name="footer.background" description="Footer Background" type="background"
default="transparent url(https://hosting.sunke.info/files/black50.png) repeat scroll top left"/>
<Variable name="post.margin.sides" description="Post Margin Sides" type="length" default="-20px" min="-50px" max="50px"/>
<Variable name="post.border.radius" description="Post Border Radius" type="length" default="5px" min="0" max="100px"/>
<Variable name="widget.title.text.transform" description="Widget Title Text Transform" type="string" default="uppercase"/>
<Variable name="mobile.background.overlay" description="Mobile Background Overlay" type="string"
default="transparent none repeat scroll top left"/>
<Variable name="startSide" description="Side where text starts in blog language" type="automatic" default="left"/>
<Variable name="endSide" description="Side where text ends in blog language" type="automatic" default="right"/>
*/
/* Content
----------------------------------------------- */
body {
font: normal normal 15px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
color: #626262;
background: #ffffff url(https://www.beiz.jp/images_M/sea-ocean/99999999999.jpg) no-repeat fixed top center /* Credit: chuwy (http://www.istockphoto.com/portfolio/chuwy?platform=blogger) */;
}
html body .region-inner {
min-width: 0;
max-width: 100%;
width: auto;
}
.content-outer {
font-size: 90%;
}
a:link {
text-decoration:none;
color: #3e65b9;
}
a:visited {
text-decoration:none;
color: #7693d1;
}
a:hover {
text-decoration:underline;
color: #4992ff;
}
.content-outer {
background: transparent none repeat scroll top left;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-goog-ms-border-radius: 0;
border-radius: 0;
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, .15);
-goog-ms-box-shadow: 0 0 0 rgba(0, 0, 0, .15);
box-shadow: 0 0 0 rgba(0, 0, 0, .15);
margin: 20px auto;
}
.content-inner {
padding: 0;
}
/* Header
----------------------------------------------- */
.header-outer {
background: rgba(93,93,93,0) none repeat-x scroll top left;
_background-image: none;
color: #ffffff;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-goog-ms-border-radius: 0;
border-radius: 0;
}
.Header img, .Header #header-inner {
-moz-border-radius: 0;
-webkit-border-radius: 0;
-goog-ms-border-radius: 0;
border-radius: 0;
}
.header-inner .Header .titlewrapper,
.header-inner .Header .descriptionwrapper {
padding-left: 0;
padding-right: 0;
}
.Header h1 {
font: normal normal 36px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.Header h1 a {
color: #ffffff;
}
.Header .description {
font-size: 130%;
}
/* Tabs
----------------------------------------------- */
.tabs-inner {
margin: .5em 20px 0;
padding: 0;
}
.tabs-inner .section {
margin: 0;
}
.tabs-inner .widget ul {
padding: 0;
background: rgba(93,93,93,0) none repeat scroll bottom;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-goog-ms-border-radius: 0;
border-radius: 0;
}
.tabs-inner .widget li {
border: none;
}
.tabs-inner .widget li a {
display: inline-block;
padding: .5em 1em;
margin-right: .25em;
color: #ffffff;
font: normal normal 15px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
-moz-border-radius: 10px 10px 0 0;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-goog-ms-border-radius: 10px 10px 0 0;
border-radius: 10px 10px 0 0;
background: transparent url(https://hosting.sunke.info/files/black50.png) repeat scroll top left;
border-right: 1px solid rgba(93,93,93,0);
}
.tabs-inner .widget li:first-child a {
padding-left: 1.25em;
-moz-border-radius-topleft: 10px;
-moz-border-radius-bottomleft: 0;
-webkit-border-top-left-radius: 10px;
-webkit-border-bottom-left-radius: 0;
-goog-ms-border-top-left-radius: 10px;
-goog-ms-border-bottom-left-radius: 0;
border-top-left-radius: 10px;
border-bottom-left-radius: 0;
}
.tabs-inner .widget li.selected a,
.tabs-inner .widget li a:hover {
position: relative;
z-index: 1;
background: rgba(93,93,93,0) url(https://hosting.sunke.info/files/white80.png) repeat scroll bottom;
color: #336699;
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
-goog-ms-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
box-shadow: 0 0 3px rgba(0, 0, 0, .15);
}
/* Headings
----------------------------------------------- */
h2 {
font: bold normal 13px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
text-transform: uppercase;
color: #888888;
margin: .5em 0;
}
/* Main
----------------------------------------------- */
.main-outer {
background: transparent url(https://hosting.sunke.info/files/white80.png) repeat scroll top left;
-moz-border-radius: 20px 20px 0 0;
-webkit-border-top-left-radius: 20px;
-webkit-border-top-right-radius: 20px;
-webkit-border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
-goog-ms-border-radius: 20px 20px 0 0;
border-radius: 20px 20px 0 0;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
-goog-ms-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}
.main-inner {
padding: 15px 20px 20px;
}
.main-inner .column-center-inner {
padding: 0 0;
}
.main-inner .column-left-inner {
padding-left: 0;
}
.main-inner .column-right-inner {
padding-right: 0;
}
/* Posts
----------------------------------------------- */
h3.post-title {
margin: 0;
font: normal normal 18px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
}
.comments h4 {
margin: 1em 0 0;
font: normal normal 18px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
}
.date-header span {
color: #333333;
}
.post-outer {
background-color: #ffffff;
border: solid 1px #e2e2e2;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-goog-ms-border-radius: 5px;
padding: 15px 20px;
margin: 0 -20px 20px;
}
.post-body {
line-height: 1.4;
font-size: 110%;
position: relative;
}
.post-header {
margin: 0 0 1.5em;
color: #a4a4a4;
line-height: 1.6;
}
.post-footer {
margin: .5em 0 0;
color: #a4a4a4;
line-height: 1.6;
}
#blog-pager {
font-size: 140%
}
#comments .comment-author {
padding-top: 1.5em;
border-top: dashed 1px #ccc;
border-top: dashed 1px rgba(128, 128, 128, .5);
background-position: 0 1.5em;
}
#comments .comment-author:first-child {
padding-top: 0;
border-top: none;
}
.avatar-image-container {
margin: .2em 0 0;
}
/* Comments
----------------------------------------------- */
.comments .comments-content .icon.blog-author {
background-repeat: no-repeat;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEgAACxIB0t1+/AAAAAd0SU1FB9sLFwMeCjjhcOMAAAD+SURBVDjLtZSvTgNBEIe/WRRnm3U8RC1neQdsm1zSBIU9VVF1FkUguQQsD9ITmD7ECZIJSE4OZo9stoVjC/zc7ky+zH9hXwVwDpTAWWLrgS3QAe8AZgaAJI5zYAmc8r0G4AHYHQKVwII8PZrZFsBFkeRCABYiMh9BRUhnSkPTNCtVXYXURi1FpBDgArj8QU1eVXUzfnjv7yP7kwu1mYrkWlU33vs1QNu2qU8pwN0UpKoqokjWwCztrMuBhEhmh8bD5UDqur75asbcX0BGUB9/HAMB+r32hznJgXy2v0sGLBcyAJ1EK3LFcbo1s91JeLwAbwGYu7TP/3ZGfnXYPgAVNngtqatUNgAAAABJRU5ErkJggg==);
}
.comments .comments-content .loadmore a {
border-top: 1px solid #4992ff;
border-bottom: 1px solid #4992ff;
}
.comments .continue {
border-top: 2px solid #4992ff;
}
/* Widgets
----------------------------------------------- */
.widget ul, .widget #ArchiveList ul.flat {
padding: 0;
list-style: none;
}
.widget ul li, .widget #ArchiveList ul.flat li {
border-top: dashed 1px #ccc;
border-top: dashed 1px rgba(128, 128, 128, .5);
}
.widget ul li:first-child, .widget #ArchiveList ul.flat li:first-child {
border-top: none;
}
.widget .post-body ul {
list-style: disc;
}
.widget .post-body ul li {
border: none;
}
/* Footer
----------------------------------------------- */
.footer-outer {
color:#d2d2d2;
background: transparent url(https://hosting.sunke.info/files/black50.png) repeat scroll top left;
-moz-border-radius: 0 0 20px 20px;
-webkit-border-top-left-radius: 0;
-webkit-border-top-right-radius: 0;
-webkit-border-bottom-left-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-goog-ms-border-radius: 0 0 20px 20px;
border-radius: 0 0 20px 20px;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
-goog-ms-box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}
.footer-inner {
padding: 10px 20px 20px;
}
.footer-outer a {
color: #a5c4f0;
}
.footer-outer a:visited {
color: #85a0f0;
}
.footer-outer a:hover {
color: #4992ff;
}
.footer-outer .widget h2 {
color: #b3b3b3;
}
/* Mobile
----------------------------------------------- */
html body.mobile {
height: auto;
}
html body.mobile {
min-height: 480px;
background-size: 100% auto;
}
.mobile .body-fauxcolumn-outer {
background: transparent none repeat scroll top left;
}
html .mobile .mobile-date-outer, html .mobile .blog-pager {
border-bottom: none;
background: transparent url(https://hosting.sunke.info/files/white80.png) repeat scroll top left;
margin-bottom: 10px;
}
.mobile .date-outer {
background: transparent url(https://hosting.sunke.info/files/white80.png) repeat scroll top left;
}
.mobile .header-outer, .mobile .main-outer,
.mobile .post-outer, .mobile .footer-outer {
-moz-border-radius: 0;
-webkit-border-radius: 0;
-goog-ms-border-radius: 0;
border-radius: 0;
}
.mobile .content-outer,
.mobile .main-outer,
.mobile .post-outer {
background: inherit;
border: none;
}
.mobile .content-outer {
font-size: 100%;
}
.mobile-link-button {
background-color: #3e65b9;
}
.mobile-link-button a:link, .mobile-link-button a:visited {
color: #ffffff;
}
.mobile-index-contents {
color: #626262;
}
.mobile .tabs-inner .PageList .widget-content {
background: rgba(93,93,93,0) url(https://hosting.sunke.info/files/white80.png) repeat scroll bottom;
color: #336699;
}
.mobile .tabs-inner .PageList .widget-content .pagelist-arrow {
border-left: 1px solid rgba(93,93,93,0);
}
#Attribution1{display:none;}
--></style>
<style id='template-skin-1' type='text/css'><!--
body {
min-width: 1290px;
}
.content-outer, .content-fauxcolumn-outer, .region-inner {
min-width: 1290px;
max-width: 1290px;
_width: 1290px;
}
.main-inner .columns {
padding-left: 0px;
padding-right: 210px;
}
.main-inner .fauxcolumn-center-outer {
left: 0px;
right: 210px;
/* IE6 does not respect left and right together */
_width: expression(this.parentNode.offsetWidth -
parseInt("0px") -
parseInt("210px") + 'px');
}
.main-inner .fauxcolumn-left-outer {
width: 0px;
}
.main-inner .fauxcolumn-right-outer {
width: 210px;
}
.main-inner .column-left-outer {
width: 0px;
right: 100%;
margin-left: -0px;
}
.main-inner .column-right-outer {
width: 210px;
margin-right: -210px;
}
#layout {
min-width: 0;
}
#layout .content-outer {
min-width: 0;
width: 800px;
}
#layout .region-inner {
min-width: 0;
width: auto;
}
body#layout div.add_widget {
padding: 8px;
}
body#layout div.add_widget a {
margin-left: 32px;
}
--></style>
<link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=8785980778162940211&zx=bd53e9ea-adfc-4bbb-bf0d-af4c5eea4693' media='none' onload='if(media!='all')media='all'' rel='stylesheet'/><noscript><link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=8785980778162940211&zx=bd53e9ea-adfc-4bbb-bf0d-af4c5eea4693' rel='stylesheet'/></noscript>
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?display=swap&family=Noto+Sans+SC"></head>
<body class='loading'>
<div class='navbar no-items section' id='navbar' name='Navbar'></div>
<div class='body-fauxcolumns'>
<div class='fauxcolumn-outer body-fauxcolumn-outer'>
<div class='cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left'>
<div class='fauxborder-right'></div>
<div class='fauxcolumn-inner'>
</div>
</div>
<div class='cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
</div>
<div class='content'>
<div class='content-fauxcolumns'>
<div class='fauxcolumn-outer content-fauxcolumn-outer'>
<div class='cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left'>
<div class='fauxborder-right'></div>
<div class='fauxcolumn-inner'>
</div>
</div>
<div class='cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
</div>
<div class='content-outer'>
<div class='content-cap-top cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left content-fauxborder-left'>
<div class='fauxborder-right content-fauxborder-right'></div>
<div class='content-inner'>
<header>
<div class='header-outer'>
<div class='header-cap-top cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left header-fauxborder-left'>
<div class='fauxborder-right header-fauxborder-right'></div>
<div class='region-inner header-inner'>
<div class='header no-items section' id='header' name='标题'></div>
</div>
</div>
<div class='header-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
</header>
<div class='tabs-outer'>
<div class='tabs-cap-top cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left tabs-fauxborder-left'>
<div class='fauxborder-right tabs-fauxborder-right'></div>
<div class='region-inner tabs-inner'>
<div class='tabs no-items section' id='crosscol' name='跨列'></div>
<div class='tabs section' id='crosscol-overflow' name='Cross-Column 2'><div class='widget HTML' data-version='1' id='HTML1'>
<div class='widget-content'>
<table border="0" cellpadding="1" cellspacing="1" style="width:1380px">
<tbody>
<tr>
<td style="width:139px"><img alt="" src="https://hosting.sunke.info/files/awsdo.png" style="height:60px; width:95px" /></td>
<td style="width:1280px"><style>
.button {
background-color: #4CAF50;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button2 {
background-color: #FF69B4;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button3 {
background-color: #6A5ACD;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button4 {
background-color: #00BFFF;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button5 {
background-color: #00FF00;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button6 {
background-color: #FFFF00;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button7 {
background-color: #F8F8FF;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 22px;
margin: 4px 2px;
cursor: pointer;
}
</style>
<a href="https://www.awsdo.com/" class="button7">主页</a>
<a href="https://www.awsdo.com/p/cloud-servers.html" class="button7">通用型云主机</a>
<a href="https://www.awsdo.com/p/buy-vistors.html" class="button7">住宅IP电脑</a>
<a href="https://www.awsdo.com/p/buy-alexa.html" class="button7">C5高性能云主机</a>
<a href="https://www.awsdo.com/p/buy-sales.html"class="button7">ARM云主机</a>
<a href="https://www.awsdo.com/p/aws-workspace.html"class="button7">远程桌面办公</a>
<a href="https://www.awsdo.com/p/cn2.html" class="button7">超级加速器</a>
<a href="https://www.awsdo.com/p/faqs.html" class="button7">一般问题</a></td>
</tr>
</tbody>
</table>
</div>
<div class='clear'></div>
</div></div>
</div>
</div>
<div class='tabs-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
<div class='main-outer'>
<div class='main-cap-top cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left main-fauxborder-left'>
<div class='fauxborder-right main-fauxborder-right'></div>
<div class='region-inner main-inner'>
<div class='columns fauxcolumns'>
<div class='fauxcolumn-outer fauxcolumn-center-outer'>
<div class='cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left'>
<div class='fauxborder-right'></div>
<div class='fauxcolumn-inner'>
</div>
</div>
<div class='cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
<div class='fauxcolumn-outer fauxcolumn-left-outer'>
<div class='cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left'>
<div class='fauxborder-right'></div>
<div class='fauxcolumn-inner'>
</div>
</div>
<div class='cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
<div class='fauxcolumn-outer fauxcolumn-right-outer'>
<div class='cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left'>
<div class='fauxborder-right'></div>
<div class='fauxcolumn-inner'>
</div>
</div>
<div class='cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
<!-- corrects IE6 width calculation -->
<div class='columns-inner'>
<div class='column-center-outer'>
<div class='column-center-inner'>
<div class='main section' id='main' name='主体'><div class='widget Blog' data-version='1' id='Blog1'>
<div class='blog-posts hfeed'>
<div class="date-outer">
<div class="date-posts">
<div class='post-outer'>
<div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
<meta content='https://hosting.sunke.info/files/banner/4.png' itemprop='image_url'/>
<meta content='8785980778162940211' itemprop='blogId'/>
<meta content='4505067681603626156' itemprop='postId'/>
<a name='4505067681603626156'></a>
<div class='post-header'>
<div class='post-header-line-1'></div>
</div>
<div class='post-body entry-content' id='post-body-4505067681603626156' itemprop='description articleBody'>
<img src="https://hosting.sunke.info/files/banner/4.png" width="1055" />
<span style="color: #212529; font-family: SST Light, Noto Sans; font-size: large;"><span style="font-weight: 500;">来自AWSDO.COM的T2实例是能提供基础的CPU性能和配套设备,采用按月付费的购买方式,是适合初学者的入门级选项,非常适合各种通用应用程序,如微服务、低延迟交互应用程序、中小型数据库、虚拟桌面、开发-构建-阶段环境、代码存储库,以及产品原型。
<p>
T2 实例是突发性能实例,在提供基本水平的 CPU 性能的同时具有短期发挥更高性能的能力。基准性能和突发性能受到 CPU 积分的限制。T2 实例会在空闲时积累 CPU 积分,然后在活跃时使用 CPU 积分。
</p>
<video autoplay="autoplay" loop="loop" muted="" width="1055"> <source src="https://hosting.sunke.info/files/ec2.mp4" type="video/mp4"></source> </video>
<p>
现在开始:</p><p></p></span>
<hr color="blue" width="100%" />
<p style="text-align: left;"><span style="color: #212529; font-family: SST Light,Noto Sans; font-weight: 500;"><span style="font-size: large;">第①步,选择云服务器的机房位置</span></span></p>
<div class="separator" style="clear: both; text-align: center;">
<img src="https://hosting.sunke.info/files/country1117-1.png" width="1055" />
<img src="https://hosting.sunke.info/files/country119-3.png" width="1055" />
<p style="text-align: left;"><span style="color: #212529; font-family: "SST Light","Noto Sans";"><span style="font-size: large;">第②步,选择操作系统和配置类型</span></span></p>
<img src="https://hosting.sunke.info/files/price11173.png" width="1055" />
<hr color="green" width="100%" />
<img src="https://hosting.sunke.info/files/price11174.png" width="1055" />
<p style="text-align: left;"><span style="color: #212529; font-family: "SST Light","Noto Sans";"><span style="font-size: large;">第③步,到我们的淘宝网店拍下宝贝并付钱</span></span></p>
<a href="https://shop205764349.m.taobao.com/" target="_blank"><img border="0" src="https://hosting.sunke.info/files/gotaobao2.png" width="1055" /></a>
<iframe allowfullscreen="" frameborder="0" height="1200px" src="https://forms.zohopublic.jp/awsdocom/form/Untitled/formperma/2Gih-ckqrHYLJvFblmpVqTDe9QwrRQLtKk2sw1dOLlU" style="border: none; max-width: 100%;" webkitallowfullscreen="" width="1050px"> </iframe>
<div><div><h3 style="text-align: left;"><span face="Helvetica, Arial, "Microsoft Yahei", 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #232f3e; font-size: large;">使用案例</span></h3><div class="lb-border-p lb-small-radius lb-small-v-margin lb-box" style="border-radius: 5px; border: 4px solid rgb(213, 219, 219); box-sizing: border-box; margin-bottom: 15px; margin-top: 15px; padding: 15px; position: relative;"><h3 class="lb-txt-bold lb-txt-none lb-txt-squid lb-none-v-margin lb-h3 lb-title" id=".E5.8F.AA.E9.9C.80_10_.E5.88.86.E9.92.9F_-_.E5.BF.AB.E9.80.9F.E5.85.8D.E8.B4.B9.E6.9E.84.E5.BB.BA_WordPress_.E7.BD.91.E7.AB.99" style="box-sizing: border-box; color: #232f3e; font-family: Helvetica, Arial, "Microsoft Yahei", 微软雅黑, STXihei, 华文细黑, sans-serif; line-height: 1.5; margin: 0px; overflow-wrap: break-word; text-rendering: optimizelegibility;"><span style="font-size: large;">只需 10 分钟 - 快速免费构建 WordPress 网站</span></h3><div class="lb-txt-16 lb-txt-lead lb-rtxt" style="box-sizing: border-box; line-height: 1.6; margin-bottom: 15px; margin-top: 15px; overflow-wrap: break-word;"><div style="box-sizing: border-box; color: #333333; font-family: Helvetica, Arial, "Microsoft Yahei", 微软雅黑, STXihei, 华文细黑, sans-serif; text-align: justify;"><span style="font-size: large;">Amazon 云服务器 是开始使用 AWS 的最简单方式。它提供了服务器,存储,数据库以及网络,还有经济高效的按月计划。<br style="box-sizing: border-box;" /></span></div><div style="box-sizing: border-box; color: #333333; font-family: Helvetica, Arial, "Microsoft Yahei", 微软雅黑, STXihei, 华文细黑, sans-serif; text-align: justify;"><span style="font-size: large;">此教程展示了如何在 Amazon,开启和配置 WordPress。包括的步骤有,通过 SHH 链接您的实例、登入您的 WordPress 网站、建立静态 IP 并关联到实例、建立一个 DNS 区域并关联到实例。<br style="box-sizing: border-box;" /></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">当完成这个教程,您将学会如何在 Amazon 建立并运行一个 WordPress 网站。</span></span></div></div></div><div style="text-align: justify;"><span style="font-size: large;"><a href="https://aws.amazon.com/cn/campaigns/aws-launch-a-wp/" rel="noopener" style="box-sizing: border-box; color: #0972d3; font-family: Helvetica, Arial, "Microsoft Yahei", 微软雅黑, STXihei, 华文细黑, sans-serif; outline: 0px; text-underline-offset: 0.4rem;" target="_blank">查看完整教程>></a></span></div><div><span style="font-size: large;"><br /></span></div></div>
<div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">启动简单的 Web 应用程序使用预配置的开发堆栈,如 LAMP、Nginx、MEAN 和 Node.js,以快速轻松地上网。</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">创建自定义网站使用预配置的应用程序,如 WordPress、Magento、Prestashop 和 Joomla,只需几次点击,就可以构建和个性化您的博客、电子商务或个人网站。</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">构建小型业务应用程序启动业务线软件,如文件存储和共享、备份、财务和会计软件等等。</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">启动测试环境轻松创建和删除开发沙箱和测试环境,您可以在其中无风险地尝试新想法。</span></span></div><div style="box-sizing: border-box;"><br /></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">提供易于使用的云资源,只需几次点击即可启动并运行您的 Web 应用程序或网站。EC2提供简化的服务,例如实例、容器、数据库、存储等。借助 EC2,您可以使用 WordPress、Prestashop 或 LAMP 等预配置蓝图轻松启动网站或应用程序。您可以简便地托管静态内容、将您的内容连接到全球的受众,或者启动并运行您的 Windows 业务服务器。</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">以 AWS 的强大功能和可靠性为后盾。您可以在几分钟内启动网站、Web 应用程序或项目,并通过直观的 API 管理实例。在创建实例时,您只需单击即可启动简单的操作系统 (OS)、预置的应用程序或开发堆栈,例如 WordPress、Windows、Plesk、LAMP 和 Nginx 等。</span></span></div><div style="box-sizing: border-box;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;"><br /></span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">成功案例,查看案例研究 »成功故事</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">NHN Techorus</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">NHN Techorus 加入 AWS Solution Provider Program 并以每年 150% 的速度增长。</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;"> </span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">InfraBeat Technologies</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">在成为 AWS 解决方案提供商后,InfraBeat 创建了自己的云管理平台,这是一个在 AWS 上运行的智能云解决方案。</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;"> </span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">AWSDO.COM</span></span></div><div style="box-sizing: border-box; text-align: justify;"><span face="Helvetica, Arial, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif" style="color: #333333;"><span style="font-size: large;">自从2017年AWSDO.COM建立以来,已经积累了超过500名高质量客户,实现了稳健的业务增长。</span></span><span style="text-align: center;"> </span></div>
<p style="text-align: center;"><a href="https://shop205764349.m.taobao.com/" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em; text-align: left;" target="_blank"><img border="0" data-original-height="99" data-original-width="800" src="https://hosting.sunke.info/files/buynow.png" style="color: #212529; font-family: "SST Light", "Noto Sans"; font-size: x-large;" width="1055" /></a></p>
</div></div></span>
<div style='clear: both;'></div>
</div>
<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>
<span class='post-author vcard'>
</span>
<span class='post-timestamp'>
</span>
<span class='post-comment-link'>
</span>
<span class='post-icons'>
</span>
<div class='post-share-buttons goog-inline-block'>
</div>
</div>
<div class='post-footer-line post-footer-line-2'>
<span class='post-labels'>
</span>
</div>
<div class='post-footer-line post-footer-line-3'>
<span class='post-location'>
</span>
</div>
</div>
</div>
<div class='comments' id='comments'>
<a name='comments'></a>
</div>
</div>
</div></div>
</div>
<div class='blog-pager' id='blog-pager'>
</div>
<div class='clear'></div>
<div class='blog-feeds'>
</div>
</div></div>
</div>
</div>
<div class='column-left-outer'>
<div class='column-left-inner'>
<aside>
</aside>
</div>
</div>
<div class='column-right-outer'>
<div class='column-right-inner'>
<aside>
<div class='sidebar section' id='sidebar-right-1'><div class='widget HTML' data-version='1' id='HTML3'>
<div class='widget-content'>
<style type="text/css">
body {max-width: 960px;margin: auto;}
.column-center-outer,.column-left-outer,.column-right-outer{position:relative;float:left;_display:inline;_overflow:hidden}
.column-center-outer{width:100%}
.column-left-outer{margin-left:-100%}
</style>
</div>
<div class='clear'></div>
</div><div class='widget HTML' data-version='1' id='HTML2'>
<div class='widget-content'>
<table border="0" cellpadding="1" cellspacing="1" style="width:174.6px">
<tbody>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"><img alt="" src="https://hosting.sunke.info/files/qq.png" style="height:99px; width:99px" /></td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px">3079568363</td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"><img alt="" src="https://hosting.sunke.info/files/taobao.png" style="float:left; height:98px; width:99px" /></td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"><a href="https://shop205764349.m.taobao.com/" rel="noopener" target="_blank">淘宝店铺</a></td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"><img alt="" src="https://hosting.sunke.info/files/bills-aws.png" style="height:99px; width:99px" /></td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"><a href="https://www.awsdo.com/p/aws-bills-resell-aws-aws-aws.html" target="_blank">AWS账单代付</a></td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"><img alt="" src="https://hosting.sunke.info/files/affiliate-aws.png" style="height:99px; width:99px" /></td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"><a href="https://www.awsdo.com/p/aws-affiliate-make-money-joint-venture.html" target="_blank">合作加盟</a></td>
</tr>
<tr>
<td style="width:60px"> </td>
<td style="width:100px"> </td>
</tr>
</tbody>
</table>
<p> </p>
</div>
<div class='clear'></div>
</div></div>
</aside>
</div>
</div>
</div>
<div style='clear: both'></div>
<!-- columns -->
</div>
<!-- main -->
</div>
</div>
<div class='main-cap-bottom cap-bottom'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
</div>
<footer>
<div class='footer-outer'>
<div class='footer-cap-top cap-top'>
<div class='cap-left'></div>
<div class='cap-right'></div>
</div>
<div class='fauxborder-left footer-fauxborder-left'>
<div class='fauxborder-right footer-fauxborder-right'></div>
<div class='region-inner footer-inner'>
<div class='foot section' id='footer-1'><div class='widget HTML' data-version='1' id='HTML4'>
<div class='widget-content'>
<table border="0" cellpadding="1" cellspacing="1" style="width:1380px">
<tbody>
<tr>
<td style="width:139px"></td>
<td style="width:1280px"><style>
.button {
background-color: #4CAF50;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button2 {
background-color: #FF69B4;
border: none;
color: #F8F8FF;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 26px;
margin: 4px 2px;
cursor: pointer;
}
.button3 {
background-color: #6A5ACD;