复制代码
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1"> <title>喵喵微信编辑器_最好用的微信编辑器_微信图文排版助手</title> <meta name="keywords" content="微信编辑器,微信在线编辑器,喵喵微信编辑器微信排版,微信内容排版,微信文章排版,微信在线编辑器"> <meta name="Description" content="编辑器,微信图文素材排版编辑器提供美化微信文章排版,微信公众号内容编辑的功能,样式丰富,轻松编辑非常美观的微信图文消息."> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="css/default.css" rel="stylesheet" type="text/css" /> <link href="css/main.css" rel="stylesheet" type="text/css" /> <link rel="stylesheet" type="text/css" href="css/common.css"> <link rel="stylesheet" type="text/css" href="css/index.css"> <link rel="stylesheet" type="text/css" href="css/colorpicker.css"> <link rel="stylesheet" type="text/css" href="css/editor-min.css"> <link rel="stylesheet" href="css/breakingnews.css"> <script src="js/jquery-1.10.2.min.js" type="text/javascript"></script> <script src="js/colorpicker-min.js" type="text/javascript"></script> <script src="js/uniedit2.js" type="text/javascript"></script> <script src="ueditor/third-party/zeroclipboard/ZeroClipboard.min.js" type="text/javascript"></script> <style> .demo { width: 1000px; margin: 10px auto; } .demo1 { margin-top: 10px; } .demo2 { margin-top: 10px; } a { color:#FFF } </style> <style type="text/css"> .the-icons td { border: #e2e2e2 dotted 1px; padding: 5px 9px; text-align: center; cursor: pointer; font-size: 16px; } .tr { display: table-row; vertical-align: inherit; border-color: inherit; } </style> <script src="js/breakingnews.js"></script> <script> $(function(){ $('#breakingnews1').BreakingNews({ title: '公告' }); $('#breakingnews2').BreakingNews({ title: '公众号:wx_cuuduu', titlebgcolor: '#099', linkhovercolor: '#099', border: '1px solid #099', timer: 4000, effect: 'slide' }); }); </script> </head> <body> <div class="main" style="position:relative;"> <!-- 代码 开始 --> <div class="demo demo1"> <div class="BreakingNewsController easing" id="breakingnews1"> <div class="bn-title"></div> <ul> <li><a href="http://pan.baidu.com/s/1bo0p9WN" target="_blank">微信编辑器软件更新到版本V1.02,请更新下载,下载地址2:http://pan.baidu.com/s/1bo0p9WN 密码: qn6j</a></li> </ul> <div class="bn-arrows"><span class="bn-arrows-left"></span><span class="bn-arrows-right"></span></div> </div> <div id="close" style=" position:absolute; top:0px; left:996px; z-index:10;"><img οnclick=closead(); src="https://img.alicdn.com/imgextra/i4/306562582/TB2mkm4dNBmpuFjSZFDXXXD8pXa_!!2-martrix_bbs.png"></div> </div> <div class="demo demo2"> <div class="BreakingNewsController easing" id="breakingnews2"> <div class="bn-title"></div> <ul id="abc"> <li><a href="http://pan.baidu.com/s/1qYhOzta" target="_blank">微信编辑器软件更新到版本V1.02,请更新下载,下载地址1:http://pan.baidu.com/s/1qYhOzta</a></li> </ul> <div class="bn-arrows"><span class="bn-arrows-left"></span><span class="bn-arrows-right"></span></div> </div> </div> <!-- 代码 结束 --> <div class="wxeditor"> <div class="clearfix"> <!--L S--> <div class="left clearfix"> <div class="tabbox clearfix"> <ul class="tabs" id="tabs"> <li><a class="current" tab="tab0" target="_blank" style=" background:#ed3d3d; color:#fff;">样式分类</a> </li> <li><a href="javascript:void(0);" tab="tab1">关注</a></li> <li><a href="javascript:void(0);" tab="tab2">标题</a></li> <li><a href="javascript:void(0);" tab="tab3">正文</a></li> <li><a href="javascript:void(0);" tab="tab11">炫酷背景</a></li> <li><a href="javascript:void(0);" tab="tab10">节日</a></li> <li><a href="javascript:void(0);" tab="tab4">分割线</a></li> <li><a href="javascript:void(0);" tab="tab5">阅读全文</a></li> <li><a href="javascript:void(0);" tab="tab6">分享点赞</a></li> <li><a href="javascript:void(0);" tab="tab7">互推</a></li> <li><a href="javascript:void(0);" tab="tab8">图文模板</a></li> <li><a href="javascript:void(0);" tab="tab9">更多</a></li> </ul> <em class="fr"></em> </div> <!--左侧菜单结束--> <div class="tplcontent"> <div id="colorpickerbox"> <h2 style="color:#ed3d3d; text-align:center;">样式展示区</h2> </div> <!--左侧选择内容 S--> <div> <div id="tab00" class="tab_con "> <ul class="content clearfix"> <li> <div class="itembox"> <section style="border-color: rgb(89, 195, 249); color: rgb(255, 255, 255); margin: 10px 0px; padding: 35px; background-color: rgb(237, 61, 61);" class="wxqq-bg wxqq-border"> <h2 class="unititle" style="font-size: 24px; font-weight: bold; border-color: rgb(89, 195, 249); color: inherit; text-align: center;">喵喵微信编辑器</h2> <br /> <h2 class="unititle" style="font-size: 24px; font-weight: bold; border-color: rgb(89, 195, 249); color: inherit; text-align: center;">一个逼格的编辑器</h2> <br /> <section class="135brush" style="border-color: rgb(89, 195, 249); color: inherit;"> <p style="text-align:center"><img src="https://img.alicdn.com/imgextra/i1/306562582/TB2qfkmazm2.eBjSZFtXXX56VXa_!!0-martrix_bbs.jpg" width="240" height="240" border="0" vspace="0" title="" alt="" style="width: 240px; height: 240px;"/></p> <p style="border-color: rgb(89, 195, 249); color: inherit; line-height: 1.75em;"> <span style="font-size: 16px;">扫描以上二维码,并进行关注,回复“微信编辑”,即可获得最新编辑教程知识,希望能帮助到更多的你。谢谢!</span> </p> <p style="border-color: rgb(89, 195, 249); color: inherit; line-height: 1.75em;"> <span style="font-size: 16px;"><br/> </span> </p> <p style="border-color: rgb(89, 195, 249); color: inherit; line-height: 1.75em; text-align: center;"> <span style="font-size: 18px;"><strong>喵喵微信编辑器微信编辑器,最近样式更新:2016-08-09。</strong></span> </p> </section> </section> </div> </li> </ul> </div> <!--tab1 S--> <div id="tab1" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/798/758/3507857897_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/655/737/3509737556_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/785/919/3509919587_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/746/368/3507863647_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/905/347/3509743509_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/540/278/3507872045_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/619/437/3509734916_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/312/668/3507866213_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/592/947/3509749295_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/624/737/3509737426_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/674/919/3509919476_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/525/368/3507863525_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/383/347/3509743383_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/779/137/3509731977_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/057/158/3507851750_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/663/068/3507860366_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/202/737/3509737202_536985945.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img width="100%" src="https://cbu01.alicdn.com/img/ibank/2016/442/919/3509919244_536985945.jpg"></p> </div> </li> </ul> </div> <div id="tab2" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <section class="v3editor"> <section class="mychange-borderTopColor mychange-borderRightColor mychange-borderBottomColor mychange-borderLeftColor" style="border: 1px solid rgb(250, 61, 65); text-align: center;"> <section class="mychange-bg" style="padding: 0px; text-align: center; margin: 0px auto; min-height: 10em; color: rgb(255, 255, 255); border-color: rgb(250, 61, 65); background-color: rgb(250, 61, 65);"> <section data-brushtype="text" style="margin: 10px; display: inline-block; border-color: rgb(238, 201, 110); padding: 5px; color: inherit;"> <p style="color: inherit;"> <span style="color: inherit; font-size: 24px"><strong style="color: inherit; font-size: 24px"><span style="color: inherit; font-size: 24px">俺是大标题哦,亲亲</span></strong></span> </p> </section> </section> <section style="display: inline-block; margin-top: -5em;"> <img src="https://img.alicdn.com/imgextra/i3/306562582/TB2phjyhNhmpuFjSZFyXXcLdFXa_!!0-martrix_bbs.jpg" style="border-radius: 50%; color: inherit; height: 12em !important; margin: 0px; padding: 0px; width: 12em !important"/> </section> <section style="max-width: 100%; margin: 0.5em; text-align: center;"> <section class="mychange-bg" data-brushtype="text" style="display: inline-block; color: rgb(70, 70, 72); font-size: 16px; font-weight: bold; padding: 0px 10px; line-height: 36px; vertical-align: top; box-sizing: border-box !important; border-color: rgb(164, 164, 207); background-color: rgb(250, 61, 65);"> <span style="color: rgb(255, 255, 255)">嘿嘿,人家是副标题的啦!</span> </section> </section> <section data-style="font-size: 14px; color: rgb(127, 127, 127); font-family: inherit;" style="text-align: justy; padding: 5px 10px 15px; text-align: justify;"> <p style="text-align: justify;"> <span style="color: rgb(127, 127, 127); font-family: 微软雅黑; font-size: 14px;">微信编辑器所有排版样式都免费使用~</span> </p> </section> </section> </section> </div> </li> <li> <div class="itembox"> <fieldset style="border:none;margin:0.8em 5% 0.3em;"> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor wxqq-color" data-brushtype="text" style="color: #FF6450;font-size: 20px;letter-spacing: 3px;padding: 9px 4px 14px 4px;text-align: center;margin: 0 auto;border:4px solid #FF6450;-webkit-border-radius: 8px;border-radius: 8px;">理念<span class="wxqq-color" data-brushtype="text" style="display:block; font-size:10px; line-height:12px">PHILOSOPHY</span></section> <section class="wxqq-borderTopColor" style="width: 0px; margin-right: auto; margin-left: auto; border-top-width: 0.6em; border-top-style: solid; border-bottom-color: #FF6450; border-top-color:#FF6450; height: 10px; border-left-width: 0.7em !important; border-left-style: solid !important; border-left-color: transparent !important; border-right-width: 0.7em !important; border-right-style: solid !important; border-right-color: transparent !important;"></section> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset style="margin: 0px; padding: 0px; border: 0px; max-width: 100%; box-sizing: border-box; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; white-space: normal; text-align: center; word-wrap: break-word !important;"> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;display:inline-block;border:.4em solid #00bbec;background-color:#f8f7f5"> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;margin:-.4em .5em;padding:.5em;border-top-width:.5em;border-top-style:solid;border-top-color:#f8f7f5;border-bottom-width:.5em;border-bottom-style:solid;border-bottom-color:#f8f7f5"> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important"> <section class="wxqq-bg" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box;display:inline-block;vertical-align:middle;margin:0;height:3em;width:3em;border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:0;border-bottom-left-radius:50%;background-color:#00bbec"> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box;height:2.6em;width:2.6em;margin:.2em;border-top-left-radius:50%;border-top-right-radius:50%;border-bottom-right-radius:50%;border-bottom-left-radius:50%;border:.2em solid #fff;background-color:transparent"> <section style="max-width:100%;margin-top:.05em;line-height:1;font-size:2em;font-family:inherit;text-align:inherit;text-decoration:inherit;color:#fff;word-wrap:break-word!important;box-sizing:border-box!important">1</section> </section> </section> </section> <section class="main4" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;margin:.5em 0;border-top-width:1px;border-top-style:solid;border-color:#00bbec"></section> <section style="max-width:100%;line-height:1;font-size:.9em;font-family:inherit;text-align:inherit;text-decoration:inherit;word-wrap:break-word!important;box-sizing:border-box!important">这里可输入标题,自适应宽度</section> </section> </section> </fieldset> </div> </li> <li> <div class="itembox"> <p class="wxqq-borderTopColor wxqq-color" style="margin: 25px 0px 20px; font-weight: 100; font-size: 22px; max-width: 100%; white-space: normal; padding: 5px 0px 10px 7px; border-top-width: 2px; border-top-style: solid; border-top-color: rgb(0, 187, 236); font-family: 微软雅黑; line-height: 35px; color: rgb(0, 187, 236); word-wrap: break-word !important; box-sizing: border-box !important; background-image: url(http://v.unihi.cn/tuwen/aticletitBg.png); background-color: rgb(255, 255, 255); background-position: 0px 100%; background-repeat: repeat-x;">一、这可输入标题</p> </div> </li> <li> <div class="itembox"> <p class="wxqq-borderTopColor" style="white-space: normal; margin: 8px 0px 0px; padding: 0px; font-size: 16px; font-weight: normal; max-width: 100%; color: rgb(0, 187, 236); height: 32px; line-height: 18px; font-family: 微软雅黑; border-bottom-color: rgb(227, 227, 227); border-bottom-width: 1px; border-bottom-style: solid; text-align: justify; word-wrap: break-word !important;"><span class="wxqq-borderBottomColor" style="margin: 0px; padding: 0px 2px 3px; max-width: 100%; color: rgb(0, 187, 236); display: block; word-wrap: break-word !important;"><span class="wxqq-color wxqq-borderBottomColor" style="FONT-SIZE: 16px; FONT-FAMILY: 微软雅黑, sans-serif !important; BORDER-BOTTOM: rgb(0,187,236) 2px solid; FLOAT: left; COLOR: rgb(0,187,236); PADDING-BOTTOM: 3px; PADDING-TOP: 0px; PADDING-LEFT: 2px; DISPLAY: block; LINE-HEIGHT: 28px; PADDING-RIGHT: 2px">请在这可输入标题</span><span style="COLOR: rgb(255,255,255); PADDING-BOTTOM: 4px; PADDING-TOP: 4px; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BACKGROUND-COLOR: rgb(250,15,55); border-radius: 80% 100% 90% 20%!important;margin-top: 0px;display: inline-block;margin-left: 5px;">我是微信ID</span></p> </div> </li> <li> <div class="itembox"> <p class="wxqq-borderTopColor" style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1.5em; white-space: normal; color: rgb(62, 62, 62); line-height: 2em; font-family: 微软雅黑; padding: 0px; border-top-color: rgb(0, 187, 236); border-top-width: 2px; border-top-style: solid; box-sizing: border-box !important;"><span class="wxqq-bg" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; padding: 5px 10px; color: rgb(255, 255, 255); font-size: 13px; display: inline-block; background-color: rgb(0, 187, 236);">这可输入标题</span></p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: normal; color: rgb(62, 62, 62); font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', 微软雅黑, Arial, sans-serif; line-height: 25px; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"><br/> </p> </div> </li> <li> <div class="itembox"> <section class="wxqq-borderBottomColor" style="width: 100%; color: rgb(62, 62, 62); font-family: 微软雅黑; white-space: normal; border-color: rgb(0, 187, 236); margin: 0.5em 0px; line-height: 1em; overflow: hidden; border-bottom-width: 1px; border-bottom-style: solid; display: inline-block; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"> <section class="wxqq-bg" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; padding: 0.2em; height: 2.8em; line-height: 1em; display: inline-block; background-color: rgb(0, 187, 236);"> <section style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; color: rgb(255, 255, 255); line-height: 1em; font-family: inherit; font-size: 2.0em;">1</section> </section> <section class="wxqq-color" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; padding: 0.2em; color: rgb(0, 187, 236); line-height: 1em; font-family: inherit; font-size: 1.2em; display: inline-block;">这可输入标题</section> </section> </div> </li> <li> <div class="itembox"> <section class="main_1" style="max-width: 100%; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; white-space: normal; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"> <section style="max-width: 100%; margin: 0.8em 0px 0.5em; overflow: hidden; word-wrap: break-word !important; box-sizing: border-box !important;"> <section class="wxqq-bg" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; height: 2em; display: inline-block; padding: 0.3em 0.5em; color: white; text-align: center; font-size: 1em; line-height: 1.4em; vertical-align: top; background-color: rgb(0, 187, 236);"><strong style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;">第一步</strong></section> <section class="wxqq-borderLeftColor" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; height: 2em; width: 0.5em; display: inline-block; vertical-align: top; border-left-width: 0.5em; border-left-style: solid; border-left-color: rgb(0, 187, 236); border-right-color: rgb(0, 187, 236); border-top-width: 1em !important; border-top-style: solid !important; border-top-color: transparent !important; border-bottom-width: 1em !important; border-bottom-style: solid !important; border-bottom-color: transparent !important;"></section> </section> </section> </div> </li> <li> <div class="itembox"> <section class="miaomiao" style="border: 0px none;"> <section style="margin: 10px 0px; padding: 0px; box-sizing: border-box; display: inline-block; width: 100%; font-family: 微软雅黑;"> <section style="margin-bottom:-2.5em; padding:0; transform:rotate(0); -moz-transform:rotate(0); -ms-transform:rotate(0); -o-transform:rotate(0); -webkit-transform:rotate(0); float:left"> <section class="Word BgColor" style="margin: 0px; padding: 0px; width: 3em; height: 3em; border-radius: 50%; display: table-cell; vertical-align: middle; background-color: rgb(172, 162, 242);color:rgb(255,255,255); font-size:18px"> <section style="margin: 0px auto; padding: 0px; width: 2em; height: 2em; border-radius: 50%; text-align: center; line-height: 2em; border: 1px solid rgb(255, 255, 255);"> <span class="BrushWord">1</span> </section> </section> </section> <section class="Word BgColor" style="margin-left: -1.5em; margin-top: 0.5em; padding: 0px 30px; height: 2em; border-radius: 0px 20px 20px 0px; display: inline-block; line-height: 2em; float: left; background-color: rgb(172, 162, 242);color:#FFF; font-size:16px"> <span class="BrushWord">请输入标题</span> </section> </section> </section> </div> </li> <li> <div class="itembox"> <p style="white-space: normal; margin: 8px 0px 0px; padding: 0px; font-size: 16px; font-weight: normal; max-width: 100%; color: rgb(0, 187, 236); height: 32px; line-height: 18px; font-family: 微软雅黑; border-bottom-color: rgb(227, 227, 227); border-bottom-width: 1px; border-bottom-style: solid; text-align: justify; word-wrap: break-word !important;"><span class="wxqq-borderBottomColor" style="margin: 0px; padding: 0px 2px 3px; max-width: 100%; color: rgb(0, 187, 236); line-height: 28px; border-bottom-color: rgb(0, 187, 236); border-bottom-width: 2px; border-bottom-style: solid; float: left; display: block; word-wrap: break-word !important;"><span class="wxqq-bg" style="margin: 0px 8px 0px 0px; padding: 4px 10px; max-width: 100%; border-top-left-radius: 80%; border-top-right-radius: 100%; border-bottom-right-radius: 90%; border-bottom-left-radius: 20%; color: rgb(255, 255, 255); background-color: rgb(0, 187, 236); word-wrap: break-word !important;">1</span></span><span class="wxqq-borderBottomColor" style="margin: 0px; padding: 0px 2px 3px; max-width: 100%; color: rgb(38, 38, 38); line-height: 28px; border-bottom-color: rgb(0, 187, 236); border-bottom-width: 2px; border-bottom-style: solid; float: left; display: block; word-wrap: break-word !important;"><strong class="wxqq-color" style="color: rgb(60, 117, 45); max-width: 100%; line-height: 24px; word-wrap: break-word !important;">这可输入标题</strong></span></p> </div> </li> <li> <div class="itembox"> <section class="wxqq-borderTopColor wxqq-borderBottomColor" style="display: inline-block; height: 2em; max-width: 100%; line-height: 1em; box-sizing: border-box; border-top-width: 1.1em; border-top-style: solid; border-top-color: rgb(0, 187, 236); border-bottom-width: 1.1em; border-bottom-style: solid; border-bottom-color: rgb(0, 187, 236); border-right-width: 1em; border-right-style: solid; border-right-color: transparent;"> <section style="height: 2em; margin-top: -1em; color: white; padding: 0.5em 1em; max-width: 100%; white-space: nowrap;text-overflow: ellipsis;"><strong>这里输入标题</strong></section> </section> </div> </li> <li> <div class="itembox"> <section style="margin: 0.8em 0px 0.5em;"> <section class="wxqq-bg" style="display: inline-block; width: 2.5em; height: 2.5em; border-radius: 2em; vertical-align: top; text-align: center; background-color: #00BBEC;"> <section style="display: table; width: 100%; "> <section style="display: table-cell; vertical-align: middle; font-weight: bolder; line-height: 1.3em; font-size: 2em; font-family: inherit; font-style: normal; color: rgb(255, 255, 255);">1</section> </section> </section> <section style="display: inline-block; margin-left: 0.7em;padding-top: 0.3em;"> <section class="wxqq-color" style="line-height: 1.4em; font-size: 1.5em; font-family: inherit; font-style: normal; color: #00BBEC;">请输入标题</section> </section> </section> </div> </li> <li> <div class="itembox"> <p style="margin: 8px 0px 0px; padding: 0px; height: 32px; text-align: justify; color: rgb(0, 187, 236); line-height: 18px; font-family: 微软雅黑; font-size: 16px; font-weight: normal; white-space: normal;"><span style="padding: 0px 2px 3px; line-height: 28px; float: left; display: block;"><span class="wxqq-bg" style="padding: 4px 10px; border-radius: 80% 100% 90% 20%; color: rgb(255, 255, 255); margin-right: 8px; background-color: #00BBEC;">1</span><strong class="wxqq-color">这可输入标题</strong></span></p> </div> </li> <li> <div class="itembox"> <p style="margin: 8px 0px 0px; padding: 0px; height: 32px; text-align: justify; color: rgb(0, 187, 236); line-height: 18px; font-family: 微软雅黑; font-size: 16px; font-weight: normal; white-space: normal;"><span style="padding: 0px 2px 3px; line-height: 28px; float: left; display: block;"><span class="wxqq-bg" style="padding: 4px 10px; color: #ffffff; margin-right: 8px; background-color: #00BBEC;">2</span><strong class=" wxqq-color">这可输入标题</strong></span></p> </div> </li> <li> <div class="itembox"> <section style="text-align: center; font-size: 1em; vertical-align: middle; white-space: nowrap;"> <section class="wxqq-borderTopColor wxqq-borderBottomColor" style="margin: 0 1em; white-space: nowrap; height: 0;border-top: 1.5em solid #00BBEC; border-bottom: 1.5em solid #00BBEC; border-left: 1.5em solid transparent; border-right: 1.5em solid transparent;"></section> <section style="margin: -2.75em 1.65em; white-space: nowrap; height: 0;border-top: 1.3em solid #ffffff; border-bottom: 1.3em solid #ffffff; border-left: 1.3em solid transparent; border-right: 1.3em solid transparent;"></section> <section class="wxqq-borderTopColor wxqq-borderBottomColor" style="margin: 0.45em 2.1em; white-space: nowrap; height: 0; vertical-align: middle;border-top: 1.1em solid #00BBEC; border-bottom: 1.1em solid #00BBEC; border-left: 1.1em solid transparent; border-right: 1.1em solid transparent;"> <section style="padding: 0 1em; margin-top: -0.5em; font-size: 1.2em; line-height: 1em; color: white; white-space: nowrap;max-height: 1em; overflow: hidden;">请输入标题</section> </section> </section> </div> </li> <li> <div class="itembox"> <p style="margin: 8px 0px 0px; padding: 0px; height: 32px; text-align: justify; color: rgb(62, 62, 62); line-height: 18px; font-family: 微软雅黑; font-size: 16px; font-weight: normal; border: 0px; white-space: normal;"><span class="wxqq-borderBottomColor" style="padding: 0px 2px 3px; color: rgb(0, 112, 192); line-height: 28px; border-bottom-color: #00BBEC; border-bottom-width: 2px; border-bottom-style: solid; float: left; display: block;"><span class="wxqq-bg" style="padding: 4px 10px; border-radius: 80% 100% 90% 20%; color: rgb(255, 255, 255); margin-right: 8px; background-color: #00BBEC;">序号.</span><strong class="wxqq-color" style="color: #00BBEC;">标题党</strong></span></p> </div> </li> <li> <div class="itembox"> <section class="wxqq-borderBottomColor" style="white-space: normal; margin: 0px; font-weight: normal; font-size: 20px; max-width: 100%; padding: 1px 0px; color: rgb(48, 55, 64); font-family: 微软雅黑; text-align: justify; line-height: 2px; height: 35px; border-bottom-color: rgb(0, 187, 236); border-bottom-width: 1px; border-bottom-style: solid; word-wrap: break-word !important; box-sizing: border-box !important;"><span class="wxqq-bg" style="max-width: 100%; padding: 8px 8px 2px; background-color: #00BBEC;; float: left; display: block; word-wrap: break-word !important; box-sizing: border-box !important;"><strong style="max-width: 100%; line-height: 24px; word-wrap: break-word !important; box-sizing: border-box !important;color:#fff">1</strong></span> <p style="float: left;margin-top: 0px; margin-bottom: 0px; max-width: 100%; min-height: 1.5em; white-space: pre-wrap; padding: 0px; line-height: 2em; word-wrap: break-word !important; box-sizing: border-box !important;"><span style="padding: 5px;"><strong class="wxqq-color">标题</strong><span style="font-size: 14px; color: rgb(127, 127, 127);"> - 副标题副标题副标题</span></span><br style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;"> </p> </section> </div> </li> <li> <div class="itembox"> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: normal; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"><span class="wxqq-bg" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; padding: 4px 10px; border-top-left-radius: 0.5em 4em; border-top-right-radius: 3em 1em; border-bottom-right-radius: 0.5em 2em; border-bottom-left-radius: 3em 1em; text-align: justify; color: rgb(255, 255, 255); font-family: 微软雅黑, sans-serif; box-shadow: rgb(165, 165, 165) 4px 4px 2px; background-color: rgb(0, 187, 236);"><strong style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;"><strong style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;"><span style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;">请输入标题</span></strong></strong></span></p> </div> </li> <li> <div class="itembox"> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"><strong style="color: rgb(255, 255, 255); max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;"><span glowfont="display:inline-block; color:white; text-shadow:1px 0 4px #ff0000,0 1px 4px #ff0000,0 -1px 4px #ff0000,-1px 0 4px #ff0000;filter:glow(color=#ff0000,strength=3)" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; display: inline-block; text-shadow: rgb(0, 187, 236) 1px 0px 4px, rgb(0, 187, 236) 0px 1px 4px, rgb(0, 187, 236) 0px -1px 4px, rgb(0, 187, 236) -1px 0px 4px;">请输入标题</span></strong><br/> </p> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-borderLeftColor" style="max-width: 100%; line-height: 25px; white-space: normal; font-size: 14px; font-family: arial, helvetica, sans-serif; margin: 5px 0px 0px; padding: 10px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; color: rgb(255, 255, 255); border-left-color: rgb(0, 187, 236); border-left-width: 10px; border-left-style: solid; box-shadow: rgb(153, 153, 153) 2px 2px 4px; text-shadow: rgb(34, 95, 喵喵微信编辑器) 0px 1px 0px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(55, 57, 57);"><strong style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;"><span style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; font-family: 微软雅黑; font-size: 16px;">1、这里输入标题</span></strong></blockquote> </div> </li> <li> <div class="itembox"> <p class="wxqq-color wxqq-borderLeftColor" style="margin: 5px 0px 13px; padding: 0px 10px; border-width: 0px 0px 0px 5px; border-left-style: solid; border-left-color: rgb(0, 187, 236); -webkit-font-smoothing: antialiased; font-size: 16px; color: rgb(0, 187, 236); line-height: 25px; white-space: normal; font-family: 微软雅黑;">这可输入标题</p> </div> </li> <li> <div class="itembox"> <p style="font-family: 微软雅黑, 宋体, tahoma, arial; margin: 8px 0px 0px; padding: 0px; font-size: 12px; font-weight: normal; white-space: normal; border: 0px; height: 32px; line-height: 18px;"><span style="font-family: 微软雅黑, sans-serif !important; font-size: 14px; color: #00BBEC; display: block; float: left; padding: 0px 2px 3px; line-height: 28px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #00BBEC; font-weight: bold;" class="wxqq-color wxqq-borderBottomColor">这可输入标题</span></p> </div> </li> <li> <div class="itembox"> <p style="font-family: 微软雅黑, 宋体, tahoma, arial; margin: 8px 0px 0px; padding: 0px; font-size: 12px; font-weight: normal; white-space: normal; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(227, 227, 227); height: 32px; line-height: 18px;"><span style="font-family: 微软雅黑, sans-serif !important; font-size: 14px; color: #00BBEC; display: block; float: left; padding: 0px 2px 3px; line-height: 28px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #00BBEC; font-weight: bold;" class="wxqq-color wxqq-borderBottomColor">这可输入标题</span></p> </div> </li> <li> <div class="itembox"> <p style="margin: 0px; padding: 0px; color: rgb(255, 255, 255); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: pre-wrap; min-height: 1.5em; max-width: 100%; font-stretch: normal; -webkit-text-stroke-width: 0px; word-wrap: break-word !important;"><strong><span class="wxqq-bg" style="padding: 4px 10px; color: rgb(255, 255, 255); font-family: 微软雅黑,Microsoft YaHei; margin-right: 8px; word-wrap: break-word !important; max-width: 100%; background-color:#00BBEC;">这可输入标题</span></strong></p> </div> </li> <li> <div class="itembox"> <p style="margin: 0px; padding: 0px; color: rgb(255, 255, 255); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: pre-wrap; min-height: 1.5em; max-width: 100%; font-stretch: normal; -webkit-text-stroke-width: 0px; word-wrap: break-word !important;"><strong><span class="wxqq-bg" style="padding: 4px 10px; border-radius: 5px; color: rgb(255, 255, 255); font-family: 微软雅黑,Microsoft YaHei; margin-right: 8px; word-wrap: break-word !important; max-width: 100%; background-color:#00BBEC;">这可输入标题</span></strong></p> </div> </li> <li> <div class="itembox"> <fieldset style="border: 0px; margin: 1em 0px 2em;" class="ng-scope"> <section style="text-align: center; font-size: 1em; font-family: inherit; font-style: normal; font-weight: inherit; text-decoration: inherit; color: rgb(255, 255, 255); border-color: rgb(249, 110, 87); background-color: transparent;"> <section class="wxqq-bg" style="width: 2em; height: 2em; margin: 0px auto; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; background-color: rgb(249, 110, 87);"> <section style="display: inline-block; padding: 0px 0.5em; font-size: 1em; line-height: 2; font-family: inherit; font-style: normal; text-align: center; color: rgb(255, 255, 255);">1</section> </section> <section style="margin-top: -1em; margin-bottom: 1em;"> <section class="wxqq-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-color: rgb(249, 110, 87); width: 35%; float: left;"></section> <section class="wxqq-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-color: rgb(249, 110, 87); width: 35%; float: right;"></section> </section> </section> </fieldset> </div> </li> <br /> <br /> </ul> </div> <div id="tab3" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <section class="mmeditor"> <section class="mychange-bg" style="padding: 0px 10px 20px; color: rgb(70, 70, 72); border-color: rgb(115, 115, 180); box-sizing: border-box; margin-top: 120px; border-radius: 2px; text-align: center; background-color: rgb(198, 198, 199);"> <section style="width: 150px; border-radius: 50%; padding: 5px; margin-top: -120px; display: inline-block; text-align: center; height: 150px !important; box-sizing: border-box; margin-bottom: 0px; color: inherit; border-color: rgb(198, 198, 199); background-color: rgb(254, 254, 254); display: inline-block;"> <img alt="" border="0" mapurl="" opacity="" src="https://img.alicdn.com/imgextra/i3/306562582/TB2phjyhNhmpuFjSZFyXXcLdFXa_!!0-martrix_bbs.jpg" style="border-color: rgb(198, 198, 199); border-radius: 50%; box-sizing: border-box; color: inherit; display: inline-block; height: auto !important; width: 100%" title="" vspace="0"/> </section> <section data-style="box-sizing: border-box; text-align: left; color: inherit; border-color: rgb(198, 198, 199); line-height: 1.75em;" style="margin: 20px 5px; color: inherit; border-color: rgb(198, 198, 199);"> <section style="box-sizing: border-box; text-align: left; color: inherit; border-color: rgb(198, 198, 199); line-height: 1.75em;text-align:justify;"> 无声电影时期,诞生了一大批电影艺术大师,梅里爱、格里菲斯、卓别林、爱森斯坦、勒内·克莱尔、茂瑙等,他们在电影创作实践中已经积累和完善了一套成熟的影像蒙太奇艺术。有声电影诞生初期,这些默片艺术大师对有声电影的出现产生过强烈的贬斥和抵触情绪。 </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <fieldset style="margin: 0.5em 0px; padding: 0px; border: 0px; max-width: 100%; color: rgb(68, 68, 68); font-family: 微软雅黑; line-height: 25px; white-space: normal; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box;height:1em"> <section class="wxqq-borderTopColor wxqq-borderLeftColor" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;height:16px;width:1.5em;float:left;border-top-width:.4em;border-top-style:solid;border-color: rgb(0, 187, 236);border-left-width:.4em;border-left-style:solid"></section> <section class="wxqq-borderTopColor wxqq-borderRightColor" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;height:16px;width:1.5em;float:right;border-top-width:.4em;border-top-style:solid;border-color: rgb(0, 187, 236);border-right-width:.4em;border-right-style:solid"></section> </section> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box;margin:-.8em .1em -.8em .2em;padding:.8em;border:1px solid rgb(0, 187, 236);border-top-left-radius:.3em;border-top-right-radius:.3em;border-bottom-right-radius:.3em;border-bottom-left-radius:.3em"> <section style="max-width:100%;word-wrap:break-word;box-sizing:border-box!important;padding:0;margin:0;border:none;line-height:1.4;word-break:break-all;background-image:none;font-size:1em;font-family:inherit;text-align:inherit;text-decoration:inherit;color:rgb(68, 68, 68)">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</section> </section> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box;height:1em"> <section class="wxqq-borderBottomColor wxqq-borderLeftColor" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;height:16px;width:1.5em;float:left;border-bottom-width:.4em;border-bottom-style:solid;border-color: rgb(0, 187, 236);border-left-width:.4em;border-left-style:solid"></section> <section class="wxqq-borderRightColor wxqq-borderBottomColor" style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;height:16px;width:1.5em;float:right;border-bottom-width:.4em;border-bottom-style:solid;border-color: rgb(0, 187, 236);border-right-width:.4em;border-right-style:solid"></section> </section> </fieldset> </div> </li> <li> <div class="itembox"> <section class="mmeditor"> <section style="width: 100%; display: table; text-align: center; color: rgb(255, 255, 255); line-height: 22px;"> <section style="display: table-row;"> <section style="display: table-cell; background-color: #f09494; padding: 20px 10px; width: 50%; border-right: 5px solid #fff; border-bottom: 5px solid #fff;"> <h4 style="margin: 8px auto;"> 素材 </h4> <p style="margin: 0; padding: 0;"> 超多素材 </p> <p style="margin: 0; padding: 0;"> 难以置信 </p> </section> <section style="display: table-cell; background-color: #b4dca0; padding: 20px 10px; width: 50%; border-left: 5px solid #fff; border-bottom: 5px solid #fff;"> <h4 style="margin: 8px auto;"> 素材 </h4> <p style="margin: 0; padding: 0;"> 超多素材 </p> <p style="margin: 0; padding: 0;"> 难以置信 </p> </section> </section> <section style="display: table-row;"> <section style="display: table-cell; background-color: #3abcff; padding: 20px 10px; width: 50%; border-right: 5px solid #fff; border-top: 5px solid #fff;"> <h4 style="margin: 8px auto;"> 新媒体管家 </h4> <p style="margin: 0; padding: 0;"> 专注排版 </p> <p style="margin: 0; padding: 0;"> 极致体验 </p> </section> <section style="display: table-cell; background-color: #f0dca0; padding: 20px 10px; width: 50%; border-left: 5px solid #fff; border-top: 5px solid #fff;"> <h4 style="margin: 8px auto;"> 素材 </h4> <p style="margin: 0; padding: 0;"> 超多素材 </p> <p style="margin: 0; padding: 0;"> 难以置信 </p> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <p> <br/> </p> <section class="mmeditor"> <section style="border: 1px dashed rgb(220, 216, 217); margin: 5px 2px; padding: 20px 10px; background-color: rgb(239, 239, 237); box-shadow: rgb(200, 200, 200) 0px 0px 4px;"> <h2 style="font-size: 24px; font-weight: bold; border-color: rgb(216, 40, 33); box-sizing: border-box; padding: 0px; margin: 0px; line-height: normal; text-align: center;"> <span style="font-size: 20px; font-family: arial;">Your Morning</span> </h2> <h2 style="font-size: 24px; font-weight: bold; border-color: rgb(216, 40, 33); box-sizing: border-box; padding: 0px; margin: 0px; line-height: normal; text-align: center;"> <span style="font-size: 20px; font-family: arial;">Escape With Flair</span> </h2> <p> <br/> </p> <section data-style="color: inherit; box-sizing: border-box;line-height: 2em; text-align: center;" style="color: inherit; border-color: rgb(216, 40, 33); box-sizing: border-box; padding: 0px; margin: 0px;"> <p style="text-align: center; line-height: 2em;"> 该不该搁下重重的壳 </p> <p style="text-align: center; line-height: 2em;"> 寻找到底哪里有蓝天 </p> <p style="text-align: center; line-height: 2em;"> 随着轻轻的风轻轻地飘 </p> <p style="text-align: center; line-height: 2em;"> 历经的伤都不感觉疼 </p> <p style="line-height: 2em; text-align: center;"> ...... </p> <p> <br/> </p> </section> <section style="margin: 0.8em 0px 0.5em; overflow: hidden; text-align: center;"> <section class="mychange-color mychange-borderColor" style="box-sizing: border-box !important; display: inline-block; color: rgb(168, 130, 99); font-size: 16px; font-weight: bold; padding: 10px 15px; line-height: 20px; vertical-align: top; border: 1px solid rgb(168, 130, 99); font-family: arial;"> READ MORE </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <section class="mmeditor"> <section class="mychange-borderTopColor mychange-borderBottomColor" data-style="border-top-width: 4px; border-top-style: solid; border-top-color: rgb(30, 144, 127); padding: 4px; text-align: center; color: rgb(0, 0, 0)" style="border-top-width: 4px; border-top-style: solid; border-top-color: rgb(245, 189, 209); border-bottom-width: 4px; border-bottom-style: solid; border-bottom-color: rgb(245, 189, 209); margin: 10px 10px 2px;"> <p style="padding: 4px; text-align: center; color: inherit;"> <span style="color: inherit;"><strong style="color: inherit;"><span style="font-size: 20px; color: inherit;">为 你 守 候</span></strong></span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit;"> <br/> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: left;"> <span style="color: rgb(155, 24, 71); border-color: rgb(245, 189, 209);">♥</span><span style="color: inherit;">亲爱的:</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: left;"> <span style="color: inherit;">不管晴日雨风都在那里,在为你守候,</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: left;"> <span style="color: inherit;">当你疲惫张开双手,温柔的拥抱,</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: left;"> <span style="color: inherit;">这是我承诺要给你的,你不需要回答我,OH~</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: left;"> <span style="color: inherit;">我只想告诉你我深爱你已久,一直陪伴在你身旁的人是我</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: left;"> <span style="color: inherit;">虽然你看不见我,或许也听不到我,看你快乐就足够</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: left;"> <span style="color: inherit;">世界一直在改变,我们也一直改变,对你的心不改变</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit; text-align: right;"> <span style="color: inherit;"></span><span style="color: inherit; line-height: 1.6em;">————喵喵微信编辑器</span> </p> <p class="mychange-borderTopColor" style="border-top-width: 1px; border-top-style: solid; border-top-color: rgb(245, 189, 209); padding: 4px; color: inherit;"> <br/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section class="daxiangjie.cc imbselect" style="margin-top: 10px; padding: 1px; box-sizing: border-box; border: 1px dotted rgb(218, 98, 71);"> <section class="ImbBgColor" style="margin:0px; padding: 10px 20px;border-radius:10px; background-color:rgb(245,221,178); color:rgb(51,51,44);"> <section class="ImbWord" style="width:100%; display: inline-block;font-size: 16px;line-height:1.5em;"> <span class="ImbBrushWord" style="color:inherit;">我们是浩渺苍穹中一滴水、一粒埃,宠辱不惹红尘,去留难觅踪影。</span> </section> </section> </section> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin:0; padding:0; width:100%; box-sizing:border-box;display:inline-block"> <section style="margin-left:30px; padding:0; float:left;"> <section style="margin:0; padding:0; width:10px; height:30px;border-radius:0 0 5px 5px; background-color:rgb(233,139,110)"></section> </section> <section style="margin-right:30px; padding:0; float:right;"> <section style="margin:0; padding:0; width:10px; height:30px;border-radius:0 0 5px 5px; background-color:rgb(233,139,110)"></section> </section> </section> <section style="margin:0; padding:0; width:100%; box-sizing:border-box; "> <section style=" margin-top:-15px;margin-left:25px; padding:0; float:left"> <section data-bgless="spin" data-bglessp="30" style="margin:0; padding:0; width:20px; height:20px; border-radius:50%; background-color:rgb(188,83,30)"></section> </section> <section style="margin-top:-15px;margin-right:25px; padding:0; float:right"> <section data-bgless="spin" data-bglessp="30" style="margin:0; padding:0; width:20px; height:20px; border-radius:50%; background-color:rgb(188,83,30)"></section> </section> </section> </section> <section class="daxiangjie.cc" style="margin-top: -5px; padding: 0px; box-sizing: border-box; border: 0px none;"> <section class="ImbBgColor" style="margin:0px; padding: 10px 20px;border-radius:10px; background-color:rgb(245,221,178); color:rgb(51,51,44);"> <section class="ImbWord" style="width:100%; display: inline-block;font-size: 16px;line-height:1.5em;"> <span class="ImbBrushWord" style="color:inherit;">天空再美,鸟儿再痴情,等你飞过了,依旧长空无痕。</span> </section> </section> </section> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin:0; padding:0; width:100%; box-sizing:border-box;display:inline-block"> <section style="margin-left:30px; padding:0; float:left;"> <section style="margin:0; padding:0; width:10px; height:30px;border-radius:0 0 5px 5px; background-color:rgb(233,139,110)"></section> </section> <section style="margin-right:30px; padding:0; float:right;"> <section style="margin:0; padding:0; width:10px; height:30px;border-radius:0 0 5px 5px; background-color:rgb(233,139,110)"></section> </section> </section> <section style="margin:0; padding:0; width:100%; box-sizing:border-box; "> <section style=" margin-top:-15px;margin-left:25px; padding:0; float:left"> <section data-bgless="spin" data-bglessp="30" style="margin:0; padding:0; width:20px; height:20px; border-radius:50%; background-color:rgb(188,83,30)"></section> </section> <section style="margin-top:-15px;margin-right:25px; padding:0; float:right"> <section data-bgless="spin" data-bglessp="30" style="margin:0; padding:0; width:20px; height:20px; border-radius:50%; background-color:rgb(188,83,30)"></section> </section> </section> </section> <section class="daxiangjie.cc" style="margin-top: -5px; padding: 0px; box-sizing: border-box; border: 0px none;"> <section class="ImbBgColor" style="margin:0px; padding: 10px 20px;border-radius:10px; background-color:rgb(245,221,178); color:rgb(51,51,44);"> <section class="ImbWord" style="width:100%; display: inline-block;font-size: 16px;line-height:1.5em;"> <span class="ImbBrushWord" style="color:inherit;">我们实在不必苛求太多,心简单了,人就快乐了;人简单了,这个世界也就透明了。</span> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 15px; border: 1px solid rgb(0, 187, 236); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px;"> <p class="ue_t">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc imbselect" style="border: 1px dotted rgb(218, 98, 71); padding: 1px;"> <section style="margin: 10px 0px; padding-top: 2.5em; box-sizing: border-box; border: 0px solid rgb(0, 0, 0); font-family: 微软雅黑;"> <section style="margin:0 auto -8em; padding-left:1em; width:14em;"> <img class="ImbBrushImg" src="https://img.alicdn.com/imgextra/i3/306562582/TB2evbyhOpnpuFjSZFIXXXh2VXa_!!2-martrix_bbs.png" style="width:100%; display:block" data_src="https://img.alicdn.com/imgextra/i3/306562582/TB2evbyhOpnpuFjSZFIXXXh2VXa_!!2-martrix_bbs.png"/> </section> <section style="margin:0 auto -11em; padding:0; box-sizing:border-box; width:16em; height:16em; background-color:#b22b24; border-radius:50%"></section> <section style="margin:0 auto; padding:0; width:18em; transform:rotate(0); -moz-transform:rotate(0); -ms-transform:rotate(0); -o-transform:rotate(0); -webkit-transform:rotate(0);"> <section style="margin-bottom:-8px; padding:0; display:inline-block; width:100%; transform:rotate(0); -moz-transform:rotate(0); -ms-transform:rotate(0); -o-transform:rotate(0); -webkit-transform:rotate(0); clear:both"> <section style="margin:0; padding:0; width:3em; height:3em; border-radius:10px 10px 0 0; background-color:#da3932; float:left; box-shadow:3px -1px 2px rgba(0,0,0,0.3)"></section> <section style="margin:0; padding:0; width:3em; height:3em; border-radius:10px 10px 0 0; background-color:#da3932; float:right; box-shadow:-3px -1px 2px rgba(0,0,0,0.3)"></section> </section> <section style="margin:0 auto; padding:0; background-color:#da3932; border-radius:0 0 20px 20px; width:100%; min-height:10em; box-shadow:0 -3px 2px rgba(0,0,0,0.3);"> <section style="margin:0; padding:0; text-align:center"> <section style="margin:10px 30px; padding:0; box-sizing:border-box; color:#fdd23e; text-align:center; display:inline-block"> <p class="ImbWord" style="margin:0; color:inherit; font-size:18px"> <strong class="ImbBrushWord">活动详情</strong> </p> </section> </section> <section style="margin:0 20px; padding:0; display:inline-block;"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin:5px 0; display:inline-block; width:100%"> <section style="margin:0; padding:0; text-align:center; opacity:0.3"> <section style="margin-bottom:-14px; padding:0; height:1px; background-color:rgb(0,0,0);"></section> <section style="margin:0; padding:0; display:inline-block"> <section style="margin:0; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> <section style="margin:0 0px 0 10px; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> <section style="margin:0 10px; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> <section style="margin:0; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> </section> </section> <section style="margin-top:0px; padding:0; box-sizing:border-box"> <section style="margin:0 20px; padding:0; color:rgb(255,255,255); text-align:center;"> <p class="ImbWord" style="margin:0; line-height:1em"> <span class="ImbBrushWord" style="color:inherit; font-size:10px">活动期间(周一至周日9;30-11.30 13.00-18.00)一次性消费满40元(含40元)</span> </p> </section> <section style="margin:5px 0; padding:0; color:rgb(255,255,255); text-align:center"> <p class="ImbWord" style="color:inherit; margin:0; line-height:1em;"> <span style="color:inherit; font-size:14px">即可</span><span style="color:#fdd23e; font-size:14px">送</span><span style="color:inherit; font-size:18px"><strong>5</strong></span><span style="color:inherit; font-size:14px">元代金券一张</span> </p> </section> </section> </section> </section> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin:5px 0; display:inline-block; width:100%"> <section style="margin-top:10px; padding:0; text-align:center; opacity:0.3"> <section style="margin-bottom:-14px; padding:0; height:1px; background-color:rgb(0,0,0);"></section> <section style="margin:0; padding:0; display:inline-block"> <section style="margin:0; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> <section style="margin:0 0px 0 10px; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> <section style="margin:0 10px; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> <section style="margin:0; padding:0; width:10px; height:10px; background-color:rgb(0,0,0); border-radius:50%; float:left"></section> </section> </section> <section style="margin-top:0px; padding:0; box-sizing:border-box"> <section style="margin:0 20px; padding:0; color:rgb(255,255,255); text-align:center;"> <p class="ImbWord" style="margin:0; line-height:1em"> <span class="ImbBrushWord" style="color:inherit; font-size:10px">每月18日为店庆日,当天持VIP卡消费顾客</span> </p> </section> <section style="margin:5px 0; padding:0; color:rgb(255,255,255); text-align:center"> <p class="ImbWord" style="color:inherit; margin:0; line-height:1em;"> <span style="color:inherit; font-size:14px">均</span><span style="color:#fdd23e; font-size:14px">享受</span><span style="color:inherit; font-size:14px">正价产品</span><span style="color:inherit; font-size:18px"><strong>6</strong></span><span style="color:inherit; font-size:14px">折</span><span style="color:#fdd23e; font-size:14px">优惠</span> </p> </section> </section> </section> </section> <p> <br/> </p> </section> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px; box-sizing: border-box; font-family: 微软雅黑;"> <section style="margin:0 30px; padding:0; box-sizing:border-box; transform:rotate(0); -moz-transform:rotate(0); -ms-transform:rotate(0); -o-transform:rotate(0); -webkit-transform:rotate(0);"> <section style="margin-bottom:-38px; padding:0; display:inline-block; width:100%;"> <section style="margin:0; padding:0; border-right:20px solid rgb(238,87,94); border-top:10px solid transparent; border-bottom:10px solid transparent; height:0; width:0; float:left"></section> <section style="margin:0; padding:0; border-left:20px solid rgb(238,87,94); border-top:10px solid transparent; border-bottom:10px solid transparent; height:0; width:0; float:right; clear:none"></section> </section> <section class="ImbBgColor ImbWord" style="margin:0 20px; padding:0 10px; height:50px; box-sizing:border-box; border-radius:6px; background-color:rgb(238,87,94); font-size:18px; color:rgb(255,255,255); text-align:center; word-wrap:break-word"> <section style="margin:0; padding:0; display:inline-block"> <section style="margin:0; padding:0; height:50px; display:table-cell; vertical-align:middle; text-align:center"> <strong><span class="ImbBrushWord" style="color:inherit">活动详情介绍</span></strong> </section> </section> </section> </section> <section class="ImbBorder" style="margin-top:-30px; padding:50px 10px 20px; border:4px solid rgb(200,200,200); border-radius:10px;" border-width="4" border-style="solid" border-radius="0"> <section class="daxiangjie.cc imbselect" style="border: 1px dotted rgb(218, 98, 71); padding: 1px;"> <section style="margin:10px 0; padding:0; display:inline-block; width:100%"> <section style="margin:0; padding:0; float:left; width:20%; color:rgb(30, 178, 225); font-size:28px; text-align:center"> <section class="ImbWord" style="margin:0; padding:0"> <span style="color:inherit"><em>1</em></span> </section> </section> <section style="margin-top:5px; padding:0; float:left; width:80%; color:rgb(30, 178, 225);"> <section class="ImbWord" style="margin:0; padding:0; color:inherit; font-size:18px"> <strong><span class="ImbBrushWord" style="color:inherit">活动标题:</span></strong> </section> <section style="color:inherit; margin:0; padding:0;"> <p class="ImbWord" style="margin:0; color:inherit; font-size:14px; line-height:1.5em;"> <span class="ImbBrushWord" style="color:inherit">在这里输入你的活动内容,本样式可以作为活动详情介绍,</span> </p> </section> </section> </section> </section> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin:10px 0; padding:0; display:inline-block; width:100%"> <section style="margin:0; padding:0; float:left; width:20%; color:rgb(225, 30, 198); font-size:28px; text-align:center"> <section class="ImbWord" style="margin:0; padding:0"> <span style="color:inherit"><em>2</em></span> </section> </section> <section style="margin-top:5px; padding:0; float:left; width:80%; color:rgb(225, 30, 198);"> <section class="ImbWord" style="margin:0; padding:0; color:inherit; font-size:18px"> <strong><span class="ImbBrushWord" style="color:inherit">我可以变色:</span></strong> </section> <section style="color:inherit; margin:0; padding:0;"> <p class="ImbWord" style="margin:0; color:inherit; font-size:14px; line-height:1.5em;"> <span class="ImbBrushWord" style="color:inherit">在这里输入你的活动内容,本样式可以作为活动详情介绍,</span> </p> <p class="ImbWord" style="margin:0; color:inherit; font-size:14px; line-height:1.5em;"> <span class="ImbBrushWord" style="color:inherit">在这里输入你的活动内容,本样式可以作为活动详情介绍,</span> </p> </section> </section> </section> </section> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin:10px 0; padding:0; display:inline-block; width:100%"> <section style="margin:0; padding:0; float:left; width:20%; color:rgb(225, 172, 30); font-size:28px; text-align:center"> <section class="ImbWord" style="margin:0; padding:0"> <span style="color:inherit"><em>3</em></span> </section> </section> <section style="margin-top:5px; padding:0; float:left; width:80%; color:rgb(225, 172, 30);"> <section class="ImbWord" style="margin:0; padding:0; color:inherit; font-size:18px"> <strong><span class="ImbBrushWord" style="color:inherit">不够再添加:</span></strong> </section> <section style="color:inherit; margin:0; padding:0;"> <p aa="" style="margin:0; color:inherit; font-size:14px; line-height:1.5em;"> <span zz="" style="color:inherit">在这里输入你的活动内容,本样式可以作为活动详情介绍,</span> </p> </section> </section> </section> </section> <section style="margin:0; padding:0; color:rgb(238,87,94); f"> <span style="color:inherit; font-size:14px; line-height:1.5em;">标题不够在样式里找,在下一行插入即可</span> </section> <section style="margin:0; padding:0"> <p> <br/> </p> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <section class="mmeditor"> <section style="margin: 10px 0;"> <section style="display: inline-block; vertical-align: top; width: 18%;"> <img style="width: 2.4em; height: 2.4em; vertical-align: middle; margin: 12px 0px 0px;" width="2.4em" height="2.4em" src="https://img.alicdn.com/imgextra/i2/306562582/TB2wN2NhHxmpuFjSZJiXXXauVXa_!!0-martrix_bbs.jpg"/> </section> <section style="display: inline-block; vertical-align: top; width: 80%;"> <section style="border-left-width: 1px; border-left-style: solid; border-color: rgb(99, 135, 146); height: 1.2em;" class="96wx-bdc"></section> <section style="border: 1px solid; color: rgb(255, 255, 255); font-size: 18px; display: inline-block; float: left; width: 1.33em; height: 1.33em; line-height: 1.33em; margin-left: -0.666em; border-radius: 100%; text-align: center; background-color: rgb(99, 135, 146);" class="96wx-bgc"> <section> 1 </section> </section> <section style="border-left-width: 1px; border-left-style: solid; border-color: rgb(99, 135, 146);" class="96wx-bdc"> <section style="padding-bottom: 10px; padding-left:20px;"> 我会回来的! </section> <section style="padding-bottom: 10px; padding-left:20px;"> <p> <span style="font-size: 14px;">时间飞逝,人生百味杂陈,无法言说。仿佛一个人写了一封长长的信,但未等到那个可以投递的人。from《一封信》</span> </p> </section> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="padding: 15px; border: 1px dotted rgb(0, 187, 236); line-height: 2em; font-family: 宋体; min-height: 1.5em; max-width: 100%; border-bottom-right-radius: 15px; border-bottom-left-radius: 10px; word-wrap: break-word !important;"> <legend style="margin: 0px; padding: 0px; text-align: center; color: rgb(0, 0, 0); font-family: 微软雅黑; word-wrap: break-word !important; max-width: 100%;"> <p class="wxqq-bg" style="margin: 0px; padding: 0px 20px 4px; color: rgb(255, 255, 255); line-height: 2em; font-size: 14px; white-space: pre-wrap; word-break: normal; word-wrap: normal; min-height: 1.5em; max-width: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; background-color: #00BBEC;"><strong style="max-width: 100%;" class="ue_t">请输入标题</strong></p> </legend> <p style="margin: 0px; padding: 0px; line-height: 2em; word-break: normal; word-wrap: normal; min-height: 1.5em; max-width: 100%;"><span style="line-height: 2em; word-wrap: break-word !important; max-width: 100%;" class="ue_t">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</span></p> </fieldset> </div> </li> <li> <div class="itembox"> <section class="mmeditor"> <section id="template-86291" style="padding: 0.01em 0 0 8px;margin: 5px 0;"> <section style="color: rgb(255, 255, 255);margin-left: -8px;background-color: transparent;margin-top: 15px;"> <section style="box-sizing: border-box;"> <span style="border-radius: 0px 0.5em 0.5em 0px; box-sizing: border-box; display: inline-block; font-size: 15px; padding: 0.3em 0.5em; color: #FFFFFF; background-color: #EB9290;" class="96wx-bgc"><strong>喵喵微信编辑器</strong> </span> </section> <section style="font-weight: inherit;width: 0px;border-width: 4px;border-style: solid;border-color: #131313 #131313 transparent transparent;box-sizing: border-box;"></section> </section> <section style="overflow: hidden;margin: -3.6em 0px 0px;"> <section style="width: 9em;height: 2em;line-height: 2em;margin: 1em -2.5em -4em 0px;text-align: center;transform: rotate(45deg);float: right;box-shadow: rgb(200, 200, 200) 8px 4px 14px;background-color: rgb(235, 146, 144);" class="96wx-bgc"></section> <section style="padding: 55px 8px 10px; border-width: 1px 6px 4px; border-style: solid; border-color: rgb(235, 146, 144); border-radius: 8px;" class="96wx-bdc"> <p style="box-sizing: border-box;line-height: 1.75em;margin: 0;"> <span style="line-height: 25.6px; font-size: 14px;">无论听来多么平凡的爱情,那都是属于他们的、独一无二的史诗,是他们自己的桃花源传说。 from 张佳玮《爱情故事》</span> </p> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 5px; border: 1px solid rgb(0, 187, 236);"> <legend style="margin: 0px 10px;"><span style="padding: 5px 10px; color: #ffffff; font-weight: bold; font-size: 14px; background-color: #00BBEC;border-radius: 5px;" class="wxqq-bg">这输入标题</span></legend> <blockquote style="margin: 0px; padding: 10px; "> <p class="ue_t">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 5px; border: 1px solid rgb(0, 187, 236); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; background-color: rgb(239, 239, 239);"> <legend style="margin: 0px 10px;"><span style="padding: 5px 10px; color: #ffffff; font-weight: bold; font-size: 14px; background-color: #00BBEC;border-radius: 5px;" class="wxqq-bg">这输入标题</span></legend> <blockquote style="margin: 0px; padding: 10px;"> <p class="ue_t">我的标题内容区是圆角</p> </blockquote> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 5px; border: 1px solid rgb(0, 187, 236); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; background-color: rgb(239, 239, 239);"> <legend style="margin: 0px 10px;"><span style="padding: 5px 10px; color: #ffffff; font-weight: bold; font-size: 14px; background-color: #00BBEC;border-radius: 5px;" class="wxqq-bg">这输入标题</span> <span style="padding: 5px 10px; border: 0px; max-width: 100%; height: 1.5em; border-top-left-radius: 1.2em; border-top-right-radius: 1.2em; border-bottom-right-radius: 1.2em; border-bottom-left-radius: 1.2em; color: rgb(255, 255, 255); font-size: 0.8em; line-height: 1.2em; font-family: inherit; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 58, 58);">喵喵微信编辑器微信</span></legend> <blockquote style="margin: 0px; padding: 10px;"> <p class="ue_t">我的标题内容区是圆角</p> </blockquote> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 16px; line-height: 24px; font-family: 宋体; margin: 0px; padding: 15px; border: 1px solid rgb(0, 187, 236); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; max-width: 100%; orphans: 2; widows: 2; font-stretch: normal; box-shadow: rgb(165, 165, 165) 5px 5px 2px; -webkit-text-stroke-width: 0px; word-wrap: break-word !important; background-color: rgb(239, 239, 239);"> <legend style="margin: 0px; padding: 0px; text-align: center; font-size: medium; word-wrap: break-word !important; max-width: 100%;"><span style="font-family: 微软雅黑; font-size: 14px; word-wrap: break-word !important; max-width: 100%;"><strong style="word-wrap: break-word !important; max-width: 100%;"><span class="wxqq-bg" style="padding: 4px 10px; border-radius: 2em 1em 4em / 0.5em 3em; color: rgb(255, 255, 255); word-wrap: break-word !important; max-width: 100%; box-shadow: 4px 4px 2px rgb(165,165,165); background-color: #00BBEC;">这输入标题</span></strong></span></legend> <p style="font: 14px/24px 微软雅黑, Microsoft YaHei; color: rgb(89, 89, 89); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; word-wrap: break-word !important; max-width: 100%; orphans: 2; widows: 2; font-size-adjust: none; font-stretch: normal; -webkit-text-stroke-width: 0px;">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 16px; line-height: 24px; font-family: 宋体; margin: 0px; padding: 15px; border: 1px solid rgb(0, 187, 236); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; max-width: 100%; orphans: 2; widows: 2; font-stretch: normal; -webkit-text-stroke-width: 0px; word-wrap: break-word !important; background-color: rgb(239, 239, 239);"> <legend style="margin: 0px; padding: 0px; text-align: center; font-size: medium; word-wrap: break-word !important; max-width: 100%;"><span style="font-family: 微软雅黑; font-size: 14px; word-wrap: break-word !important; max-width: 100%;"><strong style="word-wrap: break-word !important; max-width: 100%;"><span class="wxqq-bg" style="padding: 4px 10px; border-radius: 2em 1em 4em / 0.5em 3em; color: #ffffff; word-wrap: break-word !important; max-width: 100%; background-color: #00BBEC;">这输入标题</span></strong></span></legend> <p style="font: 14px/24px 微软雅黑, Microsoft YaHei; color: rgb(89, 89, 89); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; word-wrap: break-word !important; max-width: 100%; orphans: 2; widows: 2; font-size-adjust: none; font-stretch: normal; -webkit-text-stroke-width: 0px;">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </fieldset> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-bg" style="margin: 0px; border: 2px dotted rgb(225, 225, 225); text-align: justify; padding: 10px 20px; widows: 2; text-transform: none; text-indent: 0px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: medium; line-height: 21px; font-family: 微软雅黑; max-width: 100%; white-space: normal; orphans: 2; letter-spacing: normal; color: rgb(255, 255, 255); word-spacing: 0px; box-shadow: rgb(225, 225, 225) 5px 5px 2px; border-top-left-radius: 0.5em 4em; border-top-right-radius: 3em 0.5em; -webkit-text-stroke-width: 0px; border-bottom-right-radius: 0.5em 1em; border-bottom-left-radius: 0em 3em; background-color: rgb(0, 187, 236);"> <p>可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-bg" style="margin: 0px; border-width: 2px; font-style: normal; font-variant: normal; font-weight: normal; font-size: 16px; line-height: 24px; font-family: 微软雅黑; padding: 10px 15px; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; color: rgb(255, 255, 255); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; font-stretch: normal; -webkit-text-stroke-width: 0px; background-color: rgb(0, 187, 236);"> <p class="ue_t">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-bg" style="max-width: 100%; margin: 0; padding: 5px 15px; color: rgb(255, 255, 255); line-height: 25px; font-weight: bold; background-color: #00BBEC; text-align: left;border-radius: 5px 5px 0 0;border: 0;"><span class="ue_t">这输入标题</span></blockquote> <blockquote class="l" style="max-width: 100%; margin: 0px; padding: 10px 15px 20px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; border: 0px; line-height: 25px; background-color: rgb(239, 239, 239);"> <p class="ue_t">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-bg" style="max-width: 100%; margin: 0; padding: 5px 15px; color: #ffffff; line-height: 25px; font-weight: bold; background-color: #00BBEC; text-align: left;border-radius: 5px 5px 0 0;border: 0;"><span class="ue_t">这输入标题</span></blockquote> <blockquote class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="max-width: 100%; margin: 0px; padding: 10px 15px 20px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; border: 1px solid rgb(0, 187, 236); line-height: 25px;"> <p class="ue_t">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-bg" style="max-width: 100%; margin: 0; padding: 5px 15px; color: #ffffff; line-height: 25px; font-weight: bold; background-color: #00BBEC; text-align: left;border-radius: 5px 5px 0 0;border: 0;display:inline-block;"><span class="ue_t">这输入标题</span></blockquote> <blockquote class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="max-width: 100%; margin: 0px; padding: 10px 15px; border: 1px solid rgb(0, 187, 236); line-height: 25px;"> <p class="ue_t">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </div> </li> <li> <div class="itembox"> <section> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin:0; border: 1px solid #00BBEC; text-align: center;"> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 1em auto; width: 12em; height: 12em;border-radius: 6em; border: 0.1em solid #00BBEC;"> <section class="wxqq-bg" style="width: 11em; height: 11em;margin: 0.4em auto; border-radius: 5.5em; background-color: #00BBEC; text-align:center; display: table; max-height: 11em;"> <section style="display: table-cell; vertical-align: middle; font-size: 1.5em; line-height: 1.2em; margin: 1em;padding: 1em; color: white; max-height: 11em;">请输入标题</section> </section> </section> <section class="wxqq-bg" style="display: inline-block; margin: 1em 1em 2em; color: white; background-color: #00BBEC; font-size: 1em; line-height: 1.5em;padding: 0.5em 1em; border-radius: 1em; white-space: nowrap; max-width: 100%;">副标题</section> </section> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin:0; padding: 1em; color: #000000; text-align: center; border: 1px solid #00BBEC; border-top: 0; font-size: 1em; line-height: 1.4em;"> <p>请输入内容请输入内容<br/> 请输入内容请输入内容</p> </section> </section> </div> </li> <li> <div class="itembox"> <fieldset style="border: 1px solid rgb(226, 226, 226); box-shadow: rgb(226, 226, 226) 0px 16px 1px -10px; line-height: 1.6; font-size: 1em; font-family: inherit; font-style: normal; font-weight: inherit; text-align: inherit; text-decoration: inherit; color: inherit; background-color: transparent;"> <section class="wxqq-bg" style="padding: 20px; color: rgb(255, 255, 255); text-align: center; font-weight: bold; line-height: 1.4; box-shadow: rgb(221, 221, 221) 0px 3px 3px; font-size: 1.4em; font-family: inherit; font-style: normal; text-decoration: inherit; border-color: rgb(249, 110, 87); background-color: #00BBEC;">请输入活动名称</section> <section class="wxqq-borderTopColor wxqq-borderBottomColor" style="display: inline-block; height: 2em; max-width: 100%; margin-top: 10px; border-top-width: 1.1em; border-top-style: solid; border-top-color: #00BBEC; border-bottom-width: 1.1em; border-bottom-style: solid; border-bottom-color: #00BBEC; line-height: 1; box-sizing: border-box; border-right-width: 1em !important; border-right-style: solid !important; border-right-color: transparent !important; font-size: 1em; font-family: inherit; font-style: normal; font-weight: inherit; text-align: inherit; text-decoration: inherit; color: rgb(255, 255, 255); border-left-color: rgb(249, 110, 87); background-color: transparent;"> <section style="height: 2em; max-width: 100%; padding: 0.5em 1em; margin-top: -1em; color: rgb(255, 255, 255); white-space: nowrap; text-overflow: ellipsis; font-family: inherit; font-style: normal;">活动时间</section> </section> <section style="padding: 5px; font-family: inherit; font-style: normal; color: inherit;">2014-10-11</section> <section class="wxqq-borderTopColor wxqq-borderBottomColor" style="display: inline-block; height: 2em; max-width: 100%; margin-top: 10px; border-top-width: 1.1em; border-top-style: solid; border-top-color: #00BBEC; border-bottom-width: 1.1em; border-bottom-style: solid; border-bottom-color: #00BBEC; line-height: 1; box-sizing: border-box; border-right-width: 1em !important; border-right-style: solid !important; border-right-color: transparent !important; font-size: 1em; font-family: inherit; font-style: normal; font-weight: inherit; text-align: inherit; text-decoration: inherit; color: rgb(255, 255, 255); border-left-color: rgb(249, 110, 87); background-color: transparent;"> <section style="height: 2em; max-width: 100%; padding: 0.5em 1em;margin-top: -1em; color: rgb(255, 255, 255); white-space: nowrap; text-overflow: ellipsis; font-family: inherit; font-style: normal;">活动地点</section> </section> <section style="padding: 5px; font-family: inherit; font-style: normal; color: inherit;">温州丹璐广场</section> <section class="wxqq-borderTopColor wxqq-borderBottomColor" style="display: inline-block; height: 2em; max-width: 100%; margin-top: 24px; border-top-width: 1.1em; border-top-style: solid; border-top-color: #00BBEC; border-bottom-width: 1.1em; border-bottom-style: solid; border-bottom-color: #00BBEC; line-height: 1; box-sizing: border-box; border-right-width: 1em !important; border-right-style: solid !important; border-right-color: transparent !important; font-size: 1em; font-family: inherit; font-style: normal; font-weight: inherit; text-align: inherit; text-decoration: inherit; color: rgb(255, 255, 255); border-left-color: rgb(249, 110, 87); background-color: transparent;"> <section style="height: 2em; max-width: 100%; padding: 0.5em 1em; margin-top: -1em; color: rgb(255, 255, 255); white-space: nowrap; text-overflow: ellipsis; font-family: inherit; font-style: normal;">活动介绍</section> </section> <section style="padding: 16px; font-family: inherit; font-style: normal; color: inherit;">请输入活动内容<br/> 请输入活动内容<br/> 请输入活动内容<br/> ......</section> </fieldset> </div> </li> <li> <div class="itembox"> <blockquote class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="max-width: 100%; margin: 0px; padding: 10px 15px; border: 6px solid rgb(0, 187, 236); border-top-left-radius: 50px; border-bottom-right-radius: 50px; box-shadow: rgb(165, 165, 165) 5px 5px 2px; word-wrap: break-word !important;"> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 24px; max-width: 100%; min-height: 1.5em; word-wrap: break-word !important;">可在这输入内容, 喵喵微信编辑器 - 微信图文排版,微信图文编辑器,微信公众号编辑器,微信编辑首选。</p> </blockquote> </div> </li> <li> <div class="itembox"> <p class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 15px; max-width: 100%; word-wrap: normal; min-height: 1.5em; white-space: pre-wrap; padding: 20px; border: 1px dotted rgb(0, 187, 236); text-align: justify; color: rgb(73, 68, 41); line-height: 2em; font-family: 微软雅黑; font-size: 14px; border-bottom-right-radius: 15px; border-bottom-left-radius: 10px; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"><span class="wxqq-color" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; color: rgb(0, 187, 236);"><strong style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;">请输入内容</strong></span></p> </div> </li> <li> <div class="itembox"> <fieldset class="comment_quote" style="margin: 5px 0px; padding: 5px; border: 1px solid rgb(204, 204, 204); max-width: 100%; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; white-space: normal; box-shadow: rgb(165, 165, 165) 5px 5px 2px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(248, 247, 245);"> <legend style="padding: 0px; max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; margin: 0px; line-height: 1.8em;"><strong style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; color: rgb(89, 89, 89); font-family: 微软雅黑; font-size: 18px; line-height: 42.66666793823242px; text-align: center; white-space: pre-wrap;"><span class="wxqq-color" style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important; color: rgb(0, 187, 236); text-shadow: rgb(201, 201, 201) 5px 3px 1px;">精彩内容</span></strong></legend> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; box-sizing: border-box !important;">请输入内容<br/> 请输入内容<br/> 请输入内容<br/> </p> </fieldset> </div> </li> <br /> <br /> </ul> </div> <div class="tab_con dn" id="tab11"> <ul class="content clearfix"> <li> <div class="itembox"> <section data-id="2262"> <section style="max-width: 100%; padding: 5px 15px; border: none rgb(255, 129, 36); margin: 0px; word-wrap: break-word !important; box-sizing: border-box !important; background-image: url(https://img.alicdn.com/imgextra/i3/306562582/TB26.mygw0kpuFjSspdXXX4YXXa_!!0-martrix_bbs.jpg); background-size: cover;background-position: 0% 50%;background-repeat: no-repeat;"> <section style="padding:5px;"> <p style="text-align: center; color: inherit; box-sizing: border-box; padding: 0px; margin: 0px;"> <br/> </p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; text-align: center; color: inherit; padding: 0px; box-sizing: border-box !important;"> <span style="color:#C00000; font-size:18px;">彩色背景</span> </p> <section data-style="text-align: center; color: color:rgb(127, 127, 127);"> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%;min-height: 1em; line-height: 1.75em; color: inherit; padding: 0px; box-sizing: border-box !important;"> <br/> </p> <p style="text-align: center; line-height: 2em;"> <span style="line-height: 2em; color: rgb(0, 0, 0);">童年,是一幅迷人的画</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">勾勒出我多少动人有趣的故事</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">童年,是一首婉转悠扬的短笛</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">奏出了我多少纯洁美好的幻想</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">童年,是一束绚丽的茉莉</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">儿时的欢笑像茉莉散发出的醉人的芳香</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">朵朵洁白的花瓣就仿佛是一件件回忆</span> </p> <p style="text-align: center; line-height: 2em;"> <br/> </p> <p style="line-height: 2em; text-align: center;"> <span style="color:#7F7F7F">......</span> </p> <p> <br/> </p> <p> <br/> </p> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <section data-id="2257"> <section style="max-width: 100%; padding: 5px 15px; border: none rgb(255, 129, 36); margin: 0px; word-wrap: break-word !important; box-sizing: border-box !important; background-image: url(https://img.alicdn.com/imgextra/i1/306562582/TB2Q0m1gB0kpuFjy1XaXXaFkVXa_!!0-martrix_bbs.jpg); background-size: cover;background-position: 0% 50%;background-repeat: no-repeat;"> <section style="padding:5px;"> <p style="text-align: center; color: inherit; box-sizing: border-box; padding: 0px; margin: 0px;"> <br/> </p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; text-align: center; color: inherit; padding: 0px; box-sizing: border-box !important;"> <span style="color:#C00000; font-size:18px;">彩色背景</span> </p> <section data-style="text-align: center; color: color:rgb(127, 127, 127);"> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%;min-height: 1em; line-height: 1.75em; color: inherit; padding: 0px; box-sizing: border-box !important;"> <br/> </p> <p style="text-align: center; line-height: 2em;"> <span style="line-height: 2em; color: rgb(0, 0, 0);">童年,是一幅迷人的画</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">勾勒出我多少动人有趣的故事</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">童年,是一首婉转悠扬的短笛</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">奏出了我多少纯洁美好的幻想</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">童年,是一束绚丽的茉莉</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">儿时的欢笑像茉莉散发出的醉人的芳香</span> </p> <p style="text-align: center; line-height: 2em;"> <span style="color: rgb(0, 0, 0);">朵朵洁白的花瓣就仿佛是一件件回忆</span> </p> <p style="text-align: center; line-height: 2em;"> <br/> </p> <p style="line-height: 2em; text-align: center;"> <span style="color:#7F7F7F">......</span> </p> <p> <br/> </p> <p> <br/> </p> </section> </section> </section> </section> </div> </li> <li> <div class="itembox"> <article id="m765" class="yead_editor yead-selected" data-author="Wxeditor" style="font-size:14px;border:0px;padding:0px;margin:5px auto;white-space: normal;"> <section class="wx-bg" data-wxsrc="https://mmbiz.qlogo.cn/mmbiz/ianq03UUWGmKBiaFRAtInJGYgEuY433yBF9VwrS9voMnIgMxPZibNPfqqMsZbN1qvIuPNX5HFpEyVfBSJuQx9z5icg/0?wx_fmt=jpeg" style="border-style:solid;-webkit-border-image:url(http://img.yzcdn.cn/upload_files/2016/07/11/FjvsL4PlA8W8u_uAMKgS2lJe4onq.jpg) 50 fill repeat;border-width:30px;margin:10px auto" data-width="100%"> <section style="padding:10px;font-size:14px;line-height:30px;text-indent:2em"> <p> 在这里输入你的内容,注意不要用退格键把所有文字删除,请保留一个或者用鼠标选取后直接输入,防止格式错乱。 </p> </section> </section> </article> </div> </li> <li> <div class="itembox"> <article id="m764" class="yead_editor" data-author="Wxeditor" style="font-size:14px;border:0px;padding:0px;margin:5px auto;white-space: normal;"> <section class="wx-bg" data-wxsrc="https://mmbiz.qlogo.cn/mmbiz/ianq03UUWGmKBiaFRAtInJGYgEuY433yBF1icg16h7mLLt1eYqVhoicicwEJ9MTGYsia8zY5yxQpib4RZfcX6cWbnza0A/0?wx_fmt=jpeg" style="border-style:solid;-webkit-border-image:url(http://img.yzcdn.cn/upload_files/2016/07/11/Fr_zcL6_lHsuSQ3iCHFh8KzEmFV7.jpg) 50 fill repeat;border-width:30px;margin:10px auto" data-width="100%"> <section style="padding:10px;font-size:14px;line-height:30px;text-indent:2em"> <p> 在这里输入你的内容,注意不要用退格键把所有文字删除,请保留一个或者用鼠标选取后直接输入,防止格式错乱。 </p> </section> </section> </article> </div> </li> <li> <div class="itembox"> <blockquote class="videababg" style="max-width: 100%; padding: 5px 15px; border: none rgb(232, 30, 38); word-wrap: break-word !important; box-sizing: border-box !important; background-image: url(/mmbiz/bj/015.gif);padding-bottom: 20px;" data-original-title="" title=""> <section style="color:#ffffff"> <p style="text-align: center; color: inherit;"><br style="color: inherit;"/> </p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; text-align: center; box-sizing: border-box !important; color: inherit;"> <span style="font-size: 18px; color: inherit;"><strong style="color: #000000;">喵喵微信编辑器动态背景样式【花】</strong></span></p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; color: inherit; box-sizing: border-box !important;"><span style="color: inherit;"><strong style="color: #000000;">喵喵微信编辑器出品</strong></span></p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; color: inherit; box-sizing: border-box !important;"><span style="color: inherit;"><strong style="color: #000000;">必属精品</strong></span></p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; color: inherit; box-sizing: border-box !important; text-align: right;"><span style="color: rgb(255, 0, 0);">由 喵喵微信编辑器独家打造设计</span></p> </section> </blockquote> </div> </li> <li> <div class="itembox"> <blockquote class="videababg" style="max-width: 100%; padding: 5px 15px; border: none rgb(232, 30, 38); word-wrap: break-word !important; box-sizing: border-box !important; background-image: url(/mmbiz/bj/016.gif);padding-bottom: 20px;" data-original-title="" title=""> <section style="color:#ffffff"> <p style="text-align: center; color: inherit;"><br style="color: inherit;"/> </p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; text-align: center; box-sizing: border-box !important; color: inherit;"> <span style="font-size: 18px; color: inherit;"><strong style="color: #000000;">喵喵微信编辑器动态背景样式【爱心雨】</strong></span></p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; color: inherit; box-sizing: border-box !important;"><span style="color: inherit;"><strong style="color: #000000;">喵喵微信编辑器出品</strong></span></p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; color: inherit; box-sizing: border-box !important;"><span style="color: inherit;"><strong style="color: #000000;">必属精品</strong></span></p> <p style="margin-top: 0px; margin-bottom: 0px; max-width: 100%; word-wrap: normal; min-height: 1em; white-space: pre-wrap; line-height: 1.75em; color: inherit; box-sizing: border-box !important; text-align: right;"><span style="color: rgb(255, 0, 0);">由 喵喵微信编辑器VIP用户提供</span></p> </section> </blockquote> </div> </li> <br> <br> </ul> </div> <div class="tab_con dn" id="tab10"> <ul class="content clearfix"> <li> <div class="itembox"> <section data-id="2612"> <p> <img width="100%" class="daxiangjie.cc" src="https://img.alicdn.com/imgextra/i2/306562582/TB2aEHDhJFopuFjSZFHXXbSlXXa_!!2-martrix_bbs.png"/> </p> <p> </p> </section> </div> </li> <li> <div class="itembox"> <section data-id="2611"> <p style="text-align: center;"> <img class="daxiangjie.cc" src="https://img.alicdn.com/imgextra/i4/306562582/TB22518hQqvpuFjSZFhXXaOgXXa_!!2-martrix_bbs.png"/> </p> </section> </div> </li> <li> <div class="itembox"> <section data-id="2006"> <section id="3_657" style="border:none;border-style:none;margin: 5px auto;text-align: center;"> <p> <img src="https://img.alicdn.com/imgextra/i4/306562582/TB2QYqIgxXkpuFjy0FiXXbUfFXa_!!0-martrix_bbs.jpg" style="margin: 0px; padding: 0px; width: 300px;" data-width="300px"/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <section data-id="44390" class="wxqq-borderBottomColor" style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; color: rgb(62, 62, 62); white-space: normal; border: 0px none; font-size: 14px; font-family: 微软雅黑; background-color: rgb(255, 255, 255); word-wrap: break-word !important;"> <section data-bcless="darken" style="margin: 10px auto; padding: 0px; max-width: 100%; box-sizing: border-box; border: 1px solid rgb(197, 200, 204); text-align: center; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; box-shadow: rgb(255, 255, 255) 0px 1px 0px, rgb(197, 200, 204) 0px 2px 0px, rgb(255, 255, 255) 0px 3px 0px, rgb(197, 200, 204) 0px 4px 0px; word-wrap: break-word !important;"> <section class="wxqq-bg" style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; height: 25px; border-bottom-width: 0px; border-bottom-style: solid; border-bottom-color: rgb(197, 200, 204); border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; background-color: rgb(219, 219, 221); word-wrap: break-word !important;"> <section data-width="14px" style="margin: 0px 100px 0px 0px; padding: 0px; max-width: 100%; box-sizing: border-box; display: inline-block; height: 14px; width: 14px; border-top-left-radius: 7px; border-top-right-radius: 7px; border-bottom-right-radius: 7px; border-bottom-left-radius: 7px; background-color: rgb(173, 173, 173); word-wrap: break-word !important;"> <section data-width="14px" style="margin: 30px 0px 0px; padding: 0px; max-width: 100%; box-sizing: border-box; height: 14px; width: 14px; border-top-left-radius: 7px; border-top-right-radius: 7px; border-bottom-right-radius: 7px; border-bottom-left-radius: 7px; background-color: rgb(222, 222, 222); word-wrap: break-word !important;"></section> <section data-width="8px" style="margin: -37px 0px 0px 2px; padding: 0px; max-width: 100%; box-sizing: border-box; width: 8px; height: 30px; border: 1px solid rgb(202, 202, 202); border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; background-color: rgb(255, 255, 255); word-wrap: break-word !important;"></section> </section> <section data-width="14px" style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; display: inline-block; height: 14px; width: 14px; border-top-left-radius: 7px; border-top-right-radius: 7px; border-bottom-right-radius: 7px; border-bottom-left-radius: 7px; background-color: rgb(173, 173, 173); word-wrap: break-word !important;"> <section data-width="14px" style="margin: 30px 0px 0px; padding: 0px; max-width: 100%; box-sizing: border-box; height: 14px; width: 14px; border-top-left-radius: 7px; border-top-right-radius: 7px; border-bottom-right-radius: 7px; border-bottom-left-radius: 7px; background-color: rgb(222, 222, 222); word-wrap: break-word !important;"></section> <section data-width="8px" style="margin: -37px 0px 0px 2px; padding: 0px; max-width: 100%; box-sizing: border-box; width: 8px; height: 30px; border: 1px solid rgb(202, 202, 202); border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; background-color: rgb(255, 255, 255); word-wrap: break-word !important;"></section> </section> </section> <section class="135brush" style="margin: 40px 10px; padding: 0px; max-width: 100%; box-sizing: border-box; word-wrap: break-word !important;"> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; min-height: 1em; white-space: pre-wrap; word-wrap: break-word !important;"><span style="margin: 0px; padding: 0px; max-width: 100%; color: rgb(151, 72, 6); font-size: 16px; box-sizing: border-box !important; word-wrap: break-word !important;"><strong style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;">父亲节<span style="margin: 0px; padding: 0px; max-width: 100%; font-family: arial, 宋体, sans-serif; line-height: 24px; text-indent: 28px; box-sizing: border-box !important; word-wrap: break-word !important;">Father's Day</span></strong></span></p> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; min-height: 1em; white-space: pre-wrap; word-wrap: break-word !important;"><span style="margin: 0px; padding: 0px; max-width: 100%; color: rgb(0, 0, 0); font-family: arial, 宋体, sans-serif; line-height: 24px; text-indent: 28px; box-sizing: border-box !important; word-wrap: break-word !important;">顾名思义是感恩父亲的节日。约始于二十世纪初,起源于美国,现已广泛流传于世界各地,节日日期因地域而存在差异。最广泛的日期在每年<span style="margin: 0px; padding: 0px; max-width: 100%; color: rgb(151, 72, 6); box-sizing: border-box !important; word-wrap: break-word !important;">6月的第三个星期日</span>,世界上有52个国家和地区是在这一天过父亲节。节日里有各种的庆祝方式,大部分都与赠送礼物、家族聚餐或活动有关。</span></p> </section> </section> </section> </div> </li> <li> <div class="itembox"> <section data-color="rgb(253, 226, 216)" data-custom="rgb(253, 226, 216)" style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; white-space: normal; background-color: rgb(255, 255, 255); border: 0px none; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; word-wrap: break-word !important;"> <section style="margin: 15px 0px 0px; padding: 0px; max-width: 100%; box-sizing: border-box; border: 0px; -webkit-box-reflect: below 0px -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), color-stop(0.2, transparent), to(rgba(250, 250, 250, 0.298039))); line-height: 20px; word-wrap: break-word !important;"> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; min-height: 1em; white-space: pre-wrap; border: 0px; text-align: center; color: inherit; word-wrap: break-word !important;"><span class="wxqq-color" style="margin: 0px; padding: 0px; max-width: 100%; border: 0px; color: rgb(0, 187, 236); box-sizing: border-box !important; word-wrap: break-word !important;"><strong data-brushtype="text" style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box; border: 0px rgb(216, 40, 33); color: inherit; font-size: 30px; word-wrap: break-word !important;"><span style="margin: 0px; padding: 0px; max-width: 100%; line-height: 0px; box-sizing: border-box !important; word-wrap: break-word !important;">父亲节</span>遇上端午节</strong></span></p> </section> </section> </div> </li> <li> <div class="itembox"> <p></p> <section style="margin: 0px; padding: 0px; border: 0px; font-family: 微软雅黑; white-space: normal; box-sizing: border-box; color: rgb(44, 62, 80); font-size: 15px; line-height: 21px; background-color: rgb(254, 254, 254);"> <hr class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 0px; border-width: 2px; border-top-style: solid; border-color: rgb(165, 0, 3); box-sizing: content-box; height: 0px;" /> <section style="margin: -18px 0px 0px; padding: 0px; border: 0px; box-sizing: border-box; text-align: center;"> <p class="wxqq-bg" style="margin: 0px 5px; padding: 0px; border: 0px; box-sizing: border-box; line-height: 36px; color: rgb(255, 255, 255); background-color: rgb(165, 0, 3); display: inline-block; width: 36px; height: 36px; border-top-left-radius: 18px; border-top-right-radius: 18px; border-bottom-right-radius: 18px; border-bottom-left-radius: 18px;">父</p> <p class="wxqq-bg" style="margin: 0px 5px; padding: 0px; border: 0px; box-sizing: border-box; line-height: 36px; color: rgb(255, 255, 255); background-color: rgb(165, 0, 3); display: inline-block; width: 36px; height: 36px; border-top-left-radius: 18px; border-top-right-radius: 18px; border-bottom-right-radius: 18px; border-bottom-left-radius: 18px;">亲</p> <p class="wxqq-bg" style="margin: 0px 5px; padding: 0px; border: 0px; box-sizing: border-box; line-height: 36px; color: rgb(255, 255, 255); background-color: rgb(165, 0, 3); display: inline-block; width: 36px; height: 36px; border-top-left-radius: 18px; border-top-right-radius: 18px; border-bottom-right-radius: 18px; border-bottom-left-radius: 18px;">节</p> </section> </section> </div> </li> <li> <div class="itembox"> <section class="wxqq-bg" style="margin: 0px; padding: 5px; border: 0px; color: rgb(68, 68, 68); font-family: 微软雅黑; font-size: 13px; line-height: 24px; white-space: normal; box-sizing: border-box; background-color: rgb(165, 0, 3);"> <section style="margin: 0px; padding: 10px 20px; border: 1px solid rgb(255, 255, 255); box-sizing: border-box;"> <p class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin-top: 0px; margin-bottom: 10.5px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(165, 0, 3); box-sizing: border-box; line-height: 1.4; color: rgb(255, 255, 255);"><span style="margin: 0px; padding: 0px; border: 0px; box-sizing: border-box; font-size: 24px;"><strong style="margin: 0px; padding: 0px; border: 0px; box-sizing: border-box;">父亲节快乐</strong></span> <span style="margin: 0px; padding: 0px; border: 0px; box-sizing: border-box; font-size: 14px;"><strong style="margin: 0px; padding: 0px; border: 0px; box-sizing: border-box;">// HAPPY FATHER'S DAY //</strong></span></p> </section> </section> </div> </li> <li> <div class="itembox"> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 5px; border: 5px solid rgb(165, 0, 3); color: rgb(68, 68, 68); font-family: 微软雅黑; white-space: normal; box-sizing: border-box;"> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 15px 20px; border: 1px solid rgb(165, 0, 3); box-sizing: border-box;"> <p class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin-top: 0px; margin-bottom: 10.5px; padding: 0px; border-width: 0px 0px 1px; border-bottom-style: solid; border-bottom-color: rgb(165, 0, 3); box-sizing: border-box; color: rgb(165, 0, 3); text-align: center;"><span style="line-height: 67px; font-size: 24px;"><strong>父亲节快乐</strong></span></p> <p class="color" style="font-size: 13px; line-height: 1.4; margin-top: 0px; margin-bottom: 10.5px; padding: 0px; border: 0px; box-sizing: border-box; color: rgb(165, 0, 3); text-align: center;"><span style="margin: 0px; padding: 0px; border: 0px; box-sizing: border-box; font-size: 18px;"><strong style="margin: 0px; padding: 0px; border: 0px; box-sizing: border-box;">HAPPY FATHER'S DAY</strong></span></p> </section> </section> </div> </li> <li> <div class="itembox"> <section label="wxqq-borderTopColor" id="96weixinfuqin01" style="border-style:none;border: none rgb(0, 0, 0); margin: 2em 0px; padding-bottom: 1.5em; font-size: 14px; font-weight: bold; text-align: center; text-decoration: inherit;"><img src="http://daxiangjie.cc/mmbiz/jr/070.gif" style="color:inherit; width:78px; margin-right:10px; margin-top: 7px"/> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="border-left-width: 2px; border-left-style: solid; border-color: rgb(0, 0, 0); padding-left: 1em; text-align: left; display: inline-block; height: 3.7em; line-height: 3.7em; vertical-align: top;"> <section style="width: 100%; overflow: hidden; margin-bottom: -1px; font-size: 24px;">父亲节 </section> </section> </section> </div> </li> <li> <div class="itembox"> <section label="wxqq-borderTopColor" style="border:none;border-style:none;margin: 1em auto;width: 90%;text-align:center; "id="96weifuqin02"><span class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="border:solid 1px #000000;width: 100%;min-height: 250px;border-radius: 3px;padding:14px;font-size: 15px;display: block;position:relative;"> <section style="display:inline-block; margin:2px auto;"> <p style="padding: 3px 10px;font-size:24px;">父亲节</p> </section> <img src="http://daxiangjie.cc/mmbiz/jr/071.gif" style="margin:3px auto;display:block;width: 59px;"/> <section style="line-height: 1.6;">从来话不多是您的写照,默默无闻的奉献任劳任怨,从来事不多是您的代号,处处无私的付出慢慢变老,不知哪一天您的话多了,毫无怨言的时光流失走了,不知哪一天您的背驼了,毫无防备的白发布满头了</section> </span></section> </div> </li> <br> <br> </ul> </div> <div id="tab4" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <p> <img style="width: 100%; height: auto !important;" src="https://img.alicdn.com/imgextra/i4/306562582/TB2QYqIgxXkpuFjy0FiXXbUfFXa_!!0-martrix_bbs.jpg,https://img.alicdn.com/imgextra/i3/306562582/TB2.D_AhUhnpuFjSZFpXXcpuXXa_!!2-martrix_bbs.png"/> </p> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <p> <img style="width: 100%; height: auto !important;" src="https://img.alicdn.com/imgextra/i2/306562582/TB2l1Tae_cCL1FjSZFPXXXZgpXa_!!306562582.gif" title=""/> </p> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <p> <img src="http://img.imeibian.com/Public/images/home/userimg/user2/2_imb_BE09E38B40BFDC56E23B82FA66351B3E.gif" title="1444708504866315.gif" style="width:100%; display:block" alt="f5.gif"/> </p> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <p> <img src="http://img.imeibian.com/Public/images/home/userimg/user2/2_imb_2946723594815BEBD3A8593A4414587C.gif" title="1444708581763039.gif" style="width:100%; display:block" alt="f8.gif"/> </p> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px; box-sizing: border-box;"> <img src="http://img.imeibian.com/store/style/145930773823120.gif" style="width:100%; display:block" data_src=""/> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px auto; padding: 0px; box-sizing: border-box; width: 100%;"> <img src="http://img.imeibian.com/store/style/145930789716421.png" style="width:100%; display:block"/> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px; box-sizing: border-box;"> <img src="http://img.imeibian.com/store/style/145930729315764.gif" style="width:100%; display:block" /> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px; box-sizing: border-box;"> <img src="https://img.alicdn.com/imgextra/i1/306562582/TB2u1V2iShlpuFjSspkXXa1ApXa_!!2-martrix_bbs.png" style="width:100%; display:block" /> </section> </section> </div> </li> <li> <div class="itembox"> <section data-id="2465" class="daxiangjie.cc"> <section data-id="2418" class="daxiangjie.cc"> <p label="Copyright © 2017 daxiangjie.cc All Rights Reserved." style="text-align: center;"> <img src="https://img.alicdn.com/imgextra/i2/306562582/TB2v.q7ehRDOuFjSZFzXXcIipXa_!!1-martrix_bbs.gif" style="width: 60px;" data-width="100%"/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <section data-id="2465" class="daxiangjie.cc"> <section data-id="2418" class="daxiangjie.cc"> <p label="Copyright © 2017 daxiangjie.cc All Rights Reserved." style="text-align: center;"> <img src="https://img.alicdn.com/imgextra/i2/306562582/TB29Djde_cCL1FjSZFPXXXZgpXa_!!1-martrix_bbs.gif" style="width: 60px;" data-width="100%"/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px; box-sizing: border-box;"> <img src="https://img.alicdn.com/imgextra/i3/306562582/TB2UtufiHJkpuFjy1zcXXa5FFXa_!!1-martrix_bbs.gif" style="width:100%; display:block" /> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px; box-sizing: border-box;"> <img src="https://img.alicdn.com/imgextra/i3/306562582/TB2In3rkilnpuFjSZFgXXbi7FXa_!!306562582.gif" style="width:100%; display:block" /> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px; box-sizing: border-box;"> <img src="https://img.alicdn.com/imgextra/i1/306562582/TB2wC3pkdRopuFjSZFtXXcanpXa_!!2-martrix_bbs.png" style="width:100%; display:block" /> </section> </section> </div> </li> <li> <div class="itembox"> <section class="daxiangjie.cc" style="border: 0px none;"> <section style="margin: 0px; padding: 0px;"> <section style="margin:10px 0 -10px 0; padding:0; border-bottom:1px solid rgb(153,204,51);"></section> <section style="margin:0; padding:0; box-sizing:border-box; width:100%; display:inline-block"> <section style="margin:0; padding:0; float:left; border-left:15px solid rgb(153,204,51); border-top:10px solid transparent; border-bottom:10px solid transparent;"></section> <section style="margin:0; padding:0; float:right; clear:none; border-right:15px solid rgb(153,204,51); border-top:10px solid transparent; border-bottom:10px solid transparent;"></section> </section> <section style="margin-top:-1em; padding:0; opacity:0"> <span style="color:rgb(255,255,255); font-size:12px">.</span> </section> </section> </section> </div> </li> <br /> <br /> </ul> </div> <div id="tab5" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: normal; color: rgb(62, 62, 62); font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif; line-height: 25.6000003814697px; text-align: center; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);"> <strong style="margin: 0px; padding: 0px; max-width: 100%; font-family: 宋体; font-size: 15px; color: rgb(192, 0, 0); line-height: 31px; box-sizing: border-box !important; word-wrap: break-word !important;">您看此文用</strong><strong style="margin: 0px; padding: 0px; max-width: 100%; font-family: 宋体; font-size: 15px; color: rgb(192, 0, 0); line-height: 31px; box-sizing: border-box !important; word-wrap: break-word !important;"> <img src="http://daxiangjie.cc/mmbiz/ydyw/ss1.gif" style="margin: 0px; padding: 0px; max-width: 100%; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important; background-image: none; background-attachment: scroll;"/> <img src="http://daxiangjie.cc/mmbiz/ydyw/ss2.gif" style="margin: 0px; padding: 0px; max-width: 100%; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important; background-image: none; background-attachment: scroll;"/>·<img src="http://daxiangjie.cc/mmbiz/ydyw/ss3.gif" style="margin: 0px; padding: 0px; max-width: 100%; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important; background-image: none; background-attachment: scroll;"/> <img src="http://daxiangjie.cc/mmbiz/ydyw/ss4.gif" style="margin: 0px; padding: 0px; max-width: 100%; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important; background-image: none; background-attachment: scroll;"/>秒,转发只需1秒呦~</strong><span style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;"></span></p> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: normal; color: rgb(62, 62, 62); font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif; line-height: 25.6000003814697px; text-align: center; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);"> <span style="margin: 0px; padding: 0px; max-width: 100%; font-family: 宋体; letter-spacing: 0px; font-size: 14px; box-sizing: border-box !important; word-wrap: break-word !important;">点击文末【阅读原文】可直接购买哦</span></p> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; max-width: 100%; clear: both; min-height: 1em; white-space: normal; color: rgb(62, 62, 62); font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif; line-height: 25.6000003814697px; text-align: center; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(255, 255, 255);"> <span style="margin: 0px; padding: 0px; max-width: 100%; font-family: 宋体; letter-spacing: 0px; font-size: 14px; box-sizing: border-box !important; word-wrap: break-word !important;">↓↓↓</span></p> </div> </li> <li> <div class="itembox"> <p><img style="height: auto !important;" src="http://daxiangjie.cc/mmbiz/ydyw/022.png"></p> </div> </li> <li> <div class="itembox"> <p class="wxqq-bg" style="padding: 5px 20px; margin-top: auto; margin-bottom: auto; font-family: 微软雅黑; white-space: normal; font-size: medium; max-width: 100%; word-wrap: normal; min-height: 1em; line-height: 25px; text-align: center; background-color: rgb(0, 187, 236); color: rgb(255, 255, 255); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; box-sizing: border-box !important;"><span style="font-size: 12px;"><span style="font-family: 微软雅黑, 'Microsoft YaHei'; border-color: rgb(103, 61, 189);">点击“阅读全文”,了解详情</span></span></p> <p style="margin: auto 55px; font-size: medium; white-space: normal; max-width: 100%; word-wrap: normal; min-height: 1em; color: rgb(62, 62, 62); line-height: 25px; border: 0px solid rgb(255, 0, 0); padding: 0px; width: auto; font-family: 微软雅黑; box-sizing: border-box !important;"><span class="wxqq-borderTopColor" style="max-width: 100%; border-color: rgb(0, 187, 236) transparent transparent; border-width: 20px; border-style: solid dashed dashed; width: 50px; bottom: -60px; height: 50px; font-size: 0px; word-wrap: break-word !important; box-sizing: border-box !important;"></span></p> </div> </li> <li> <div class="itembox"> <section> <section style="height: 8em; white-space: nowrap; overflow: hidden;"><img style="max-width: 100%;max-height: 100%;" src="http://daxiangjie.cc/mmbiz/ydyw/023.png"></section> <section style="height: 2em; margin: -7.2em 0.5em 5.5em; font-size: 1em; line-height: 1.6em; padding: 0.5em;"><span style="color: inherit; overflow: hidden; font-size: 0.9em; font-family: inherit; font-style: normal;">点击下方</span><span style="color: rgb(64, 84, 115); overflow: hidden; font-size: 0.9em; font-family: inherit; font-style: normal;">“阅读原文”</span><span style="color: inherit; overflow: hidden; font-size: 0.9em; font-family: inherit; font-style: normal;">查看更多</span></section> </section> </div> </li> <li> <div class="itembox"> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 1.5em; word-wrap: break-word; word-break: normal; white-space: pre-wrap; line-height: 36px; font-family: 微软雅黑; text-align: center; background-color: rgb(0, 0, 0); color: rgb(255, 255, 255); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; text-shadow: rgb(69, 117, 58) 0px 1px 1px;">点击左下角查看更多</p> <p><img src="http://daxiangjie.cc/mmbiz/ydyw/024.gif"></p> </div> </li> <li> <div class="itembox"> <section> <section class="wxqq-bg" style="margin: 0px; height: 0.1em; background-color: #00BBEC;"></section> <section class="wxqq-bg" style="margin: 0.3em 0px; height: 0.3em; background-color: #00BBEC;"></section> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0; background-color: white; border: 1px solid #00BBEC; box-shadow: #e2e2e2 0em 1em 0.1em -0.8em;font-size: 1em; line-height: 1.6em; padding: 0.5em;"><span style="color: inherit; font-size: 1em; font-family: inherit; font-style: normal;">点击下方</span><span style="color: rgb(64, 84, 115); font-size: 1em; font-family: inherit; font-style: normal;">“阅读原文”</span><span style="color: inherit; font-size: 1em; font-family: inherit; font-style: normal;">查看更多</span></section> <section class="wxqq-color" style="color: #00BBEC; font-size: 2em;">↓↓↓</section> </section> </div> </li> <li> <div class="itembox"> <p class="wxqq-bg" style="margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 1.5em; word-wrap: break-word; word-break: normal; white-space: pre-wrap; line-height: 36px; font-family: 微软雅黑; text-align: center; background-color: #00BBEC; color: #ffffff; border-radius: 5px;">点击左下角查看更多</p> <p class="wxqq-borderTopColor" style="margin: -5px 0px 0px 50px; display: inline-block; border-left-width: 1em; border-left-style: solid; border-right-width: 1em; border-right-style: solid; border-top-color: rgb(0, 187, 236); border-left-color: transparent !important; border-right-color: transparent !important; border-top-width: 1.5em !important; border-top-style: solid !important;"><br/> </p> </div> </li> <li> <div class="itembox"> <p><img style="height: auto !important;" src="http://daxiangjie.cc/mmbiz/ydyw/025.gif"></p> </div> </li> <li> <div class="itembox"> <p><img style="height: auto !important;" src="http://daxiangjie.cc/mmbiz/ydyw/026.gif"></p> </div> </li> <li> <div class="itembox"> <p><img style="height: auto !important;" src="http://daxiangjie.cc/mmbiz/ydyw/027.gif"></p> </div> </li> <li> <div class="itembox"> <p><img style="height: auto !important;" src="http://daxiangjie.cc/mmbiz/ydyw/028.gif"></p> </div> </li> <li> <div class="itembox"> <section style="max-width: 100%; font-size: 1em; padding: 0.7em 0px; line-height: 1.4em; border-top-width: 1px; border-top-style: solid; border-top-color: rgb(63, 71, 78); font-family: 微软雅黑; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(63, 71, 78); font-style: italic; color: rgb(63, 71, 78); word-wrap: break-word !important; box-sizing: border-box !important;"><span style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;font-size:12px"><strong style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important"><em style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important">点击“<span style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;font-size:16px;color:#c0504d">阅读原文</span>”体验一次简单不过的微信编辑体验,不用太久,不用太难,<span style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;font-size:16px;color:#9bbb59">瞬间</span>即可!</em></strong></span></section> </div> </li> <li> <div class="itembox"> <p><img style="height: auto !important;" src="http://daxiangjie.cc/mmbiz/ydyw/029.gif"></p> </div> </li> <li> <div class="itembox"> <p><img src="http://daxiangjie.cc/mmbiz/ydyw/030.gif" style="width: 100%;"></p> </div> </li> <br /> <br /> </ul> </div> <!--点赞分享--> <div id="tab6" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <section data-id="2462" class="daxiangjie.cc"> <section data-id="2418" class="daxiangjie.cc"> <p label="Copyright © 2017 daxiangjie.cc All Rights Reserved."> <img src="https://img.alicdn.com/imgextra/i4/306562582/TB2YySgiHFlpuFjy0FgXXbRBVXa_!!1-martrix_bbs.gif" style="width: 100%;" data-width="100%"/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <section data-id="2461" class="daxiangjie.cc"> <section data-id="2418" class="daxiangjie.cc"> <p label="Copyright © 2017 daxiangjie.cc All Rights Reserved."> <img src="https://img.alicdn.com/imgextra/i3/306562582/TB2NsMzkblmpuFjSZFlXXbdQXXa_!!1-martrix_bbs.gif" style="width: 100%;" data-width="100%"/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <section data-id="2460" class="daxiangjie.cc"> <section data-id="2418" class="daxiangjie.cc"> <p label="Copyright © 2017 daxiangjie.cc All Rights Reserved."> <img src="https://img.alicdn.com/imgextra/i1/306562582/TB2T5IxkilnpuFjSZFgXXbi7FXa_!!1-martrix_bbs.gif" style="width: 100%;" data-width="100%"/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <section data-id="2401" class="daxiangjie.cc"> <p label="Copyright © 2017 daxiangjie.cc All Rights Reserved." style="text-align: center;"> <img src="https://img.alicdn.com/imgextra/i2/306562582/TB2V7gBkhhmpuFjSZFyXXcLdFXa_!!1-martrix_bbs.gif" style="width: 100%;" data-width="100%"/> </p> </section> </div> </li> <li> <div class="itembox"> <section data-id="2398" class="daxiangjie.cc"> <p label="Copyright © 2017 daxiangjie.cc All Rights Reserved." style="text-align: center;"> <img src="https://img.alicdn.com/imgextra/i3/306562582/TB2U4wykdRopuFjSZFtXXcanpXa_!!1-martrix_bbs.gif" style="width: 100%;" data-width="100%"/> </p> </section> </div> </li> <li> <div class="itembox"> <section data-id="2056" class="daxiangjie.cc"> <p> <strong style="white-space: normal; margin: 0px; padding: 0px; max-width: 100%; font-family: 宋体; font-size: 15px; background-color: rgb(255, 255, 255); color: rgb(192, 0, 0); line-height: 31px; box-sizing: border-box !important; word-wrap: break-word !important;">您看此文用</strong><strong style="white-space: normal; margin: 0px; padding: 0px; max-width: 100%; font-family: 宋体; font-size: 15px; background-color: rgb(255, 255, 255); color: rgb(192, 0, 0); line-height: 31px; box-sizing: border-box !important; word-wrap: break-word !important;"> <img width="auto" height="48" style="max-width: 100%; margin: 0px; padding: 0px; background-image: none; background-attachment: scroll; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important;" src="https://img.alicdn.com/imgextra/i3/306562582/TB22lUJkbxmpuFjSZJiXXXauVXa_!!1-martrix_bbs.gif" data-width="auto"/> <img width="auto" height="48" style="max-width: 100%; margin: 0px; padding: 0px; background-image: none; background-attachment: scroll; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important;" src="https://img.alicdn.com/imgextra/i3/306562582/TB26r3TkhlmpuFjSZPfXXc9iXXa_!!1-martrix_bbs.gif" data-width="auto"/>·<img width="auto" height="48" style="max-width: 100%; margin: 0px; padding: 0px; background-image: none; background-attachment: scroll; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important;" src="https://img.alicdn.com/imgextra/i1/306562582/TB2pKubiStkpuFjy0FhXXXQzFXa_!!1-martrix_bbs.gif" data-width="auto"/> <img width="auto" height="48" style="max-width: 100%; margin: 0px; padding: 0px; background-image: none; background-attachment: scroll; height: auto !important; box-sizing: border-box !important; word-wrap: break-word !important; width: auto !important; visibility: visible !important;" src="https://img.alicdn.com/imgextra/i3/306562582/TB2ZlCCiMJlpuFjSspjXXcT.pXa_!!1-martrix_bbs.gif" data-width="auto"/>秒,转发只需1秒呦~</strong> </p> </section> </div> </li> <li> <div class="itembox"> <p><img style="width:100%" src="http://daxiangjie.cc/mmbiz/fx/017.gif"></p> </div> </li> <li> <div class="itembox"> <section data-id="1895" class="daxiangjie.cc"> <section id="3_657" label="Copyright © 2017 daxiangjie.cc All Rights Reserved." style="border:none;border-style:none;margin: 5px auto;text-align: center;"> <p> <img src="https://img.alicdn.com/imgextra/i2/306562582/TB2VxAAkdRopuFjSZFtXXcanpXa_!!306562582.gif" style="margin: 0px; padding: 0px; max-width: 100%;"/> </p> </section> </section> </div> </li> <li> <div class="itembox"> <p><img style="width:100%" src="http://daxiangjie.cc/mmbiz/fx/019.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img style="width:100%" src="http://daxiangjie.cc/mmbiz/fx/020.jpg"></p> </div> </li> <li> <div class="itembox"> <p><img style="width:100%" src="http://daxiangjie.cc/mmbiz/fx/021.gif"></p> </div> </li> <br /> <br /> </ul> </div> <div id="tab7" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 5px; border: 1px solid rgb(0, 179, 224); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; background-color: rgb(239, 239, 239);"> <legend style="margin: 0px 10px;"> <span style="padding: 5px 10px; color: rgb(255, 255, 255); font-weight: bold; font-size: 14px; border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; background-color: rgb(0, 179, 224);" class="wxqq-bg">关于喵喵微信编辑器编辑器</span> </legend> <blockquote style="margin: 0px; padding: 10px;"> <p> <span placeholder="提供非常好用的微信文章编辑工具。">非常好用的在线图文编辑工具,欢迎将喵喵微信编辑器推荐给您的朋友,将他/她从痛苦的编辑中解脱出来。</span> </p> <p> </p> <p> <img style="width:60%" src="http://daxiangjie.cc/mmbiz/ht/2wm.jpg"/> </p> </blockquote> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 0px; padding: 10px 0px; max-width: 100%; min-width: 0px; box-shadow: rgb(204, 204, 204) 0px 0px 10px; border: 1px solid rgb(170, 170, 170); border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px; text-align: center; box-sizing: border-box !important; word-wrap: break-word !important; background-color: rgb(250, 250, 239);"> <span style="margin: 0px; padding: 10px 0px; max-width: 100%; display: block; color: rgb(255, 0, 0); font-weight: 700; box-sizing: border-box !important; word-wrap: break-word !important;"><strong style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;">关注喵喵微信编辑器</strong></span><span style="margin: 0px; padding: 10px 0px; max-width: 100%; display: block; color: rgb(75, 172, 198); font-weight: 700; box-sizing: border-box !important; word-wrap: break-word !important;"><span style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;"><span style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;">宅是人的天性,环境却能培养一种人</span>!</span></span><span style="margin: 0px; padding: 10px 0px; max-width: 100%; display: block; color: rgb(75, 172, 198); font-weight: 700; box-sizing: border-box !important; word-wrap: break-word !important;"><img width="50%" src="http://daxiangjie.cc/mmbiz/ht/2wm.jpg"><br style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;" /> <span style="margin: 0px; padding: 0px; max-width: 100%; box-sizing: border-box !important; word-wrap: break-word !important;">长按二维码点选(识别图中二维码)</span></span> </fieldset> </div> </li> <!--样式13 --> <li> <div class="itembox"> <fieldset class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="margin: 96px 16px 16px; border: 1px solid rgb(249, 110, 87); text-align: center; border-top-left-radius: 8px; border-top-right-radius: 8px; border-bottom-right-radius: 8px; border-bottom-left-radius: 8px; font-size: 1.5em; font-family: inherit; font-weight: inherit; text-decoration: inherit; box-sizing: border-box; padding: 0px;" class="wx_cuuduu"> <section class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="width: 6.5em; height: 6.5em; margin: -3.3em auto 0px; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; border: 2px solid rgb(249, 110, 87); box-shadow: rgb(201, 201, 201) 0px 2px 2px 2px; box-sizing: border-box;" class="wx_cuuduu"> <section style="width: 100%; height: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; background-image: url(http://daxiangjie.cc/mmbiz/ht/wx_cuuduu.jpg); background-size: cover; box-sizing: border-box; background-position: 50% 50%; background-repeat: no-repeat no-repeat;" class="wx_cuuduu"></section> </section> <section style="margin: 8px 8px 3px; line-height: 1.4; font-family: inherit; box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;">请输入标题</section> </section> <section style="margin: 0px 8px; line-height: 1.4; font-size: 0.7em; font-family: inherit; font-weight: inherit; text-align: inherit; text-decoration: inherit; color: rgb(52, 54, 60); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;">请输入内容<br class="wx_cuuduu" style="box-sizing: border-box;"/> 请输入内容<br class="wx_cuuduu" style="box-sizing: border-box;"/> 请输入内容<br class="wx_cuuduu" style="box-sizing: border-box;"/> 请输入内容</section> </section> <section style="margin: 16px; border-top-width: 1px; border-top-style: solid; border-color: rgb(249, 110, 87); box-sizing: border-box;" class="wxqq-borderTopColor"></section> <section style="margin: 8px; line-height: 1.4; font-weight: inherit; font-size: 0.7em; font-family: inherit; text-align: inherit; text-decoration: inherit; box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;">微信号:</section> </section> </fieldset> <p><br/> </p> </div> </li> <!--样式12 --> <li> <div class="itembox"> <fieldset style="border: 0px rgb(201, 201, 201); margin: 16px; font-size: 1em; font-family: inherit; font-weight: inherit; text-align: center; text-decoration: inherit; color: inherit; box-sizing: border-box; padding: 0px;" class="wx_cuuduu"> <section style="border: 1px solid rgb(201, 201, 201); box-sizing: border-box;" class="wx_cuuduu"> <section style="width: 10em; height: 10em; margin: 16px auto; padding: 0.5em; border: 1px solid rgb(249, 110, 87); border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; font-size: 1.2em; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(255, 255, 255); box-sizing: border-box;" class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor"> <section style="display: table; width: 100%; height: 100%; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; box-sizing: border-box;" class="wx_cuuduu"> <section style="display: table-cell; vertical-align: middle; max-height: 9em; margin: 1em; padding: 1em; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; font-size: 1.2em; line-height: 1.2; font-family: inherit; background-color: rgb(249, 110, 87); box-sizing: border-box;" class="wxqq-bg"> <section class="wx_cuuduu" style="box-sizing: border-box;">请输入订阅号名称</section> </section> </section> </section> <section style="display: inline-block; height: 2em; max-width: 100%; padding: 0.5em 1em; margin: 16px 16px 32px; border-top-left-radius: 1em; border-top-right-radius: 1em; border-bottom-right-radius: 1em; border-bottom-left-radius: 1em; color: rgb(255, 255, 255); font-size: 1em; line-height: 1; font-family: inherit; font-weight: inherit; text-align: inherit; text-decoration: inherit; background-color: rgb(249, 110, 87); border-color: rgb(249, 110, 87); box-sizing: border-box;" class="wxqq-bg"> <section class="wx_cuuduu" style="box-sizing: border-box;">微信号:请输入微信号</section> </section> </section> <section style="padding: 16px; border-left-width: 1px; border-left-style: solid; border-color: rgb(201, 201, 201); border-right-width: 1px; border-right-style: solid; border-bottom-width: 1px; border-bottom-style: solid; color: inherit; font-size: 1em; line-height: 1.4; font-family: inherit; box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;">请输入内容请输入内容<br class="wx_cuuduu" style="box-sizing: border-box;"/> 请输入内容请输入内容<br class="wx_cuuduu" style="box-sizing: border-box;"/> 请输入内容请输入内容</section> </section> </fieldset> </div> </li> <!--样式11 --> <li> <div class="itembox"> <blockquote class="wxqq-borderTopColor wxqq-borderRightColor wxqq-borderBottomColor wxqq-borderLeftColor" style="border: 3px dotted rgb(230, 37, 191); padding: 10px; margin: 10px 0px; font-weight: normal; border-top-left-radius: 5px !important; border-top-right-radius: 5px !important; border-bottom-right-radius: 5px !important; border-bottom-left-radius: 5px !important;"> <h3 style="color:rgb(89,89,89);font-size:14px;margin:0;"><span class="wxqq-bg" style="background-color: rgb(230, 37, 191); color: rgb(255, 255, 255); padding: 2px 5px; font-size: 14px; margin-right: 15px; border-top-left-radius: 5px !important; border-top-right-radius: 5px !important; border-bottom-right-radius: 5px !important; border-bottom-left-radius: 5px !important;">喵喵微信编辑器</span>微信号:<span class="wxqq-bg" style="background-color: rgb(230, 37, 191); color: rgb(255, 255, 255); padding: 2px 5px; font-size: 14px; border-top-left-radius: 5px !important; border-top-right-radius: 5px !important; border-bottom-right-radius: 5px !important; border-bottom-left-radius: 5px !important;">wx_cuuduu</span></h3> <p style="margin:10px 0 5px 0;">微信公众号简介,欢迎使用喵喵微信编辑器在线图文排版编辑器助手!</p> </blockquote> </div> </li> <!--样式10 --> <li> <div class="itembox"> <section style="max-width: 100%; color: rgb(62, 62, 62); font-family: 微软雅黑; line-height: 25px; white-space: normal; padding: 0px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(255, 255, 255);"> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;margin-left:1em;line-height:1.4em"><span class="wxqq-bg" style="max-width: 100%; font-size: 0.8em; font-family: inherit; padding: 0.2em 0.5em; border-top-left-radius: 0.3em; border-top-right-radius: 0.3em; border-bottom-right-radius: 0.3em; border-bottom-left-radius: 0.3em; color: rgb(255, 255, 255); text-align: center; background-color: rgb(230, 37, 191); word-wrap: break-word !important; box-sizing: border-box !important;">这输入标题</span> <span style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;height:1.2em;padding:.2em .5em;margin-left:.3em;border-top-left-radius:1.2em;border-top-right-radius:1.2em;border-bottom-right-radius:1.2em;border-bottom-left-radius:1.2em;color:#fff;font-size:.8em;line-height:1.2em;font-family:inherit;background-color:#ccc">喵喵微信编辑器</span></section> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;margin-top:-.7em;padding:1.4em 1em 1em;border:1px solid #c0c8d1;border-top-left-radius:.3em;border-top-right-radius:.3em;border-bottom-right-radius:.3em;border-bottom-left-radius:.3em;color:#333;font-size:1em;font-family:inherit;background-color:#efefef">可在这输入内容,喵喵微信编辑器微信图文排版编辑器,微信编辑首选。</section> </section> </div> </li> <!--样式9 --> <li> <div class="itembox"> <blockquote class="wxqq-bg" style="padding: 5px 20px; margin: 0px; font-family: 微软雅黑; font-size: 16px; white-space: normal; max-width: 100%; border: 2px rgb(66, 249, 255); color: rgb(255, 255, 255); text-align: center; font-weight: 700; line-height: 24px; width: 180px; background-color: rgb(38, 163, 67); border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: rgb(153, 153, 153) 0px -1px 6px; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; text-shadow: rgb(10, 10, 10) 0px -1px 2px; word-wrap: break-word !important; box-sizing: border-box !important;">喵喵微信编辑器</blockquote> <blockquote style="padding: 10px; margin: 0px; font-family: 微软雅黑; font-size: 12px; white-space: normal; max-width: 100%; color: rgb(62, 62, 62); border: 1px solid rgb(204, 204, 204); line-height: 24px; border-top-left-radius: 0px; border-top-right-radius: 0px; box-shadow: rgb(204, 204, 204) 0px -1px 6px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; word-wrap: break-word !important; box-sizing: border-box !important; background-color: rgb(228, 228, 228);"><span style="max-width:100%;color:#00b050;word-wrap:break-word!important;box-sizing:border-box!important">微信号:</span><span class="wxqq-bg" style="max-width: 100%; font-weight: 700; color: rgb(255, 255, 255); padding: 2px 5px; background-color: rgb(38, 163, 67); word-wrap: break-word !important; box-sizing: border-box !important;">wx_cuuduu </span><span class="" style="max-width:100%;color:#00bbec;padding-left:5px;word-wrap:break-word!important;box-sizing:border-box!important">(←长按复制) </span> <p style="padding:10px 0 0;margin-top:0;margin-bottom:0;max-width:100%;word-wrap:normal;min-height:1.5em;white-space:pre-wrap;word-break:normal;color:#666;line-height:2em;box-sizing:border-box!important">全力打造喵喵微信编辑器微信营销第一品牌</p> </blockquote> </div> </li> <!--样式6 --> <li> <div class="itembox"> <p><img style="width:100%" src="http://daxiangjie.cc/mmbiz/ht/036.gif"/></p> </div> </li> <!--样式5 --> <li> <div class="itembox"> <section style="max-width: 100%; font-family: 微软雅黑; line-height: 25px; white-space: normal; background-color: rgb(255, 255, 255); text-align: center; word-wrap: break-word !important; box-sizing: border-box !important;"> <section style="max-width: 100%; display: inline-block; word-wrap: break-word !important; box-sizing: border-box !important;"> <section style="color: rgb(42, 52, 58); max-width: 100%; margin: 0.2em 0.5em 0.1em; font-size: 1.8em; line-height: 1; font-family: inherit; word-wrap: break-word !important; box-sizing: border-box !important;"><strong style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important">微营销,找久恒</strong></section> <section style="color: rgb(62, 62, 62); max-width: 100%; width: 240px; border-top-style: solid; border-top-width: 1px; border-top-color: rgb(0, 0, 0); line-height: 1; word-wrap: break-word !important; box-sizing: border-box !important;"></section> <section style="max-width: 100%; margin: 0.5em 1em; font-size: 1em; line-height: 1; font-family: inherit; word-wrap: break-word !important; box-sizing: border-box !important;"><strong style="max-width: 100%; word-wrap: break-word !important; box-sizing: border-box !important;"><span style="color:#787c81">微信号:</span><span style="color:#9bbb59">wx_cuuduu</span></strong></section> </section> </section> </div> </li> <!--样式1 --> <li> <div class="itembox"> <fieldset style="white-space: normal; margin: 0px; padding: 5px; border: 1px solid rgb(204, 204, 204); color: rgb(51, 51, 51); font-size: 14px; font-family: 宋体; widows: 2; line-height: 24px; orphans: 2; background-color: rgb(248, 247, 245);"> <legend style="margin: 0px; padding: 0px;font-size:14px;"><span style="margin: 0px; padding: 0px; font-family: arial, helvetica, sans-serif;"><strong style="color: rgb(102, 102, 102);"><span class="bkcolor" style="margin: 0px 8px 0px 0px; padding: 4px 10px; color: rgb(255, 255, 255); border-top-left-radius: 5px!important; border-top-right-radius: 5px!important; border-bottom-right-radius: 5px!important; border-bottom-left-radius: 5px!important; background-color: rgb(191, 0, 0);">喵喵微信编辑器</span></strong><strong style="color: rgb(60, 117, 45);"><span class="wxid" style="margin: 0px; padding: 0px; color: rgb(192, 0, 0);">ID:wx_cuuduu</span></strong></span></legend> <p style="margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 1.5em; word-wrap: break-word; word-break: normal; line-height: 2em; font-family: 微软雅黑; color: rgb(62, 62, 62); font-size: 12px;"><span style="margin: 0px; padding: 0px; font-family: 宋体; color: rgb(217, 150, 148); font-size: 14px;"><strong style="color: rgb(60, 117, 45);"><span style="margin: 0px; padding: 0px; color: rgb(127, 127, 127); font-family: 微软雅黑; letter-spacing: 0.25px; line-height: 28px;">直接选择需要的样式拷贝到需要的地方,修改其中的文字即可。</span><span style="margin: 0px; padding: 0px; color: rgb(127, 127, 127); font-family: 微软雅黑; letter-spacing: 0.25px; line-height: 28px;">如果需要跟换颜色或者有其他需求</span></strong></span></p> </fieldset> </div> </li> <br /> <br /> </ul> </div> <div id="tab8" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <fieldset style="border: none; margin: 0.5em 0px; padding: 0px 0.5em; box-sizing: border-box;" class="wx_cuuduu"> <section style="-webkit-box-shadow: rgba(159, 160, 160, 0.498039) 0px 0px 10px; box-shadow: rgba(159, 160, 160, 0.498039) 0px 0px 10px; padding: 10px; width: 65%; display: inline-block; vertical-align: top; box-sizing: border-box;" class="wx_cuuduu"> <section style="-webkit-box-shadow: rgba(0, 0, 0, 0.290196) 0px 0px 10px inset; box-shadow: rgba(0, 0, 0, 0.290196) 0px 0px 10px inset; padding: 7px; box-sizing: border-box;" class="wx_cuuduu"> <img style="box-sizing: border-box; float: left; width: 100%; margin: 0px; height: auto !important;" src="http://daxiangjie.cc/mmbiz/tw/076.jpg" class="wx_cuuduu"/> <section style="clear: both; box-sizing: border-box;" class="wx_cuuduu"></section> </section> </section> <section style="width: 29%; margin-left: 4%; display: inline-block; vertical-align: bottom; box-sizing: border-box;" class="wx_cuuduu"> <section style="display: inline-block; border-bottom-width: 1px; border-bottom-style: solid; border-color: black; font-size: 1.2em; font-family: inherit; font-weight: inherit; text-decoration: inherit; box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 喵喵微信编辑器 </section> </section> <section style="width: 100%; margin-top: 0.2em; margin-bottom: 15px; font-size: 0.9em; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgba(0, 0, 0, 0.611765); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 打动你的人群<br class="wx_cuuduu" style="box-sizing: border-box;"/> </section> </section> </section> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset style="border: none; margin: 0.8em 0px 0.3em; box-sizing: border-box; padding: 0px;" class="wx_cuuduu"> <section style="line-height: 0; box-sizing: border-box;" class="wx_cuuduu"> <img style="display: inline-block; width: 100%; border: 0px; box-sizing: border-box; height: auto !important;" src="http://daxiangjie.cc/mmbiz/tw/077.jpg" class="wx_cuuduu"/> </section> <section style="width: 30%; display: inline-block; float: left; text-align: right; margin: 15px 0px 0px; padding: 0px; box-sizing: border-box;" class="wx_cuuduu"> <section style="float: right; text-align: center; margin-top: -15px; box-sizing: border-box;" class="wx_cuuduu"> <section style="width: 1px; height: 1.2em; margin-left: 50%; box-sizing: border-box; background-color: rgb(102, 102, 102);" class="wx_cuuduu"></section> <section style="width: 2em; height: 2em; border: 1px solid rgb(102, 102, 102); border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; line-height: 2em; font-size: 1em; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(39, 44, 51); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 浪 </section> </section> <section style="width: 2em; height: 2em; border: 1px solid rgb(102, 102, 102); margin-top: 2px; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; line-height: 2em; font-size: 1em; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(39, 44, 51); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 漫 </section> </section> </section> </section> <section style="width: 65%; float: left; margin-top: 20px; line-height: 1.5em; margin-left: 5%; padding: 0px; font-size: 1em; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(39, 44, 51); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> <section class="wx_cuuduu" style="box-sizing: border-box;"> <span style="font-size: 175%; box-sizing: border-box;" class="wx_cuuduu">小店</span> </section> <section class="wx_cuuduu" style="box-sizing: border-box;"> 周末不打烊 </section> </section> </section> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset style="border: none; margin: 0.8em 0px 0.3em; box-sizing: border-box; padding: 0px;" class="wx_cuuduu"> <img style="display: inline-block; width: 100%; border: 0px; box-sizing: border-box; height: auto !important;" src="http://daxiangjie.cc/mmbiz/tw/078.jpg" class="wx_cuuduu"/> <section style="display: inline-block; width: 30%; vertical-align: top; margin-left: 10%; margin-top: -12em; box-sizing: border-box;" class="wx_cuuduu"> <section style="width: 5em; height: 5em; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; padding-top: 0.5em; box-sizing: border-box; background-image: url(http://daxiangjie.cc/mmbiz/tw/078.jpg); background-size: cover; background-position: 50% 50%; background-repeat: no-repeat;" class="wx_cuuduu"> <section style="width: 4em; height: 4em; margin: 0px auto; border: 1px solid white; border-top-left-radius: 50%; border-top-right-radius: 50%; border-bottom-right-radius: 50%; border-bottom-left-radius: 50%; box-sizing: border-box;" class="wx_cuuduu"></section> </section> <section style="width: 1px; height: 3em; border-left-width: 0.1em; border-left-style: solid; border-color: white; margin: -0.5em 0px 0px 2.5em; box-sizing: border-box;" class="wx_cuuduu"></section> <section style="width: 5em; padding: 0.5em; text-align: center; box-sizing: border-box; background-color: rgb(200, 14, 71);" class="wx_cuuduu"> <section style="width: 1px; height: 0.5em; border-left-width: 0.1em; border-left-style: solid; border-color: white; margin: -0.5em 0px 0px 2em; box-sizing: border-box;" class="wx_cuuduu"></section> <section style="width: 100%; height: 100%; border: 1px solid white; padding: 0.5em; box-sizing: border-box;" class="wx_cuuduu"> <section style="width: 1em; display: inline-block; vertical-align: top; margin-right: 0.5em; font-size: 1em; font-family: inherit; font-weight: inherit; text-align: left; text-decoration: inherit; color: rgb(255, 255, 255); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 点击外边白色边框 </section> </section> <section style="width: 1em; display: inline-block; vertical-align: top; font-size: 1em; font-family: inherit; font-weight: inherit; text-align: left; text-decoration: inherit; color: rgb(255, 255, 255); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 换背景 </section> </section> </section> </section> </section> <section style="display: inline-block; width: 60%; vertical-align: top; margin-top: 0.5em; line-height: 1.5em; font-size: 1em; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(153, 153, 153); box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 请输入文字请输入文字请输入文字请输入文字请输入文字请输入文字 </section> </section> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset style="border: none; margin: 0.8em 0px 0.3em; text-align: center; box-sizing: border-box; padding: 0px;" class="wx_cuuduu"> <section style="width: 100%; height: 20em; padding-top: 1.2em; box-sizing: border-box; background-image: url(http://daxiangjie.cc/mmbiz/tw/079.jpg); background-size: cover; background-position: 50% 50%; background-repeat: no-repeat;" class="wx_cuuduu"> <section style="width: 2em; margin: auto; font-size: 1em; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(255, 255, 255); border-color: white; box-sizing: border-box;" class="wx_cuuduu"> <section style="border-top-width: 2px; border-right-width: 2px; border-left-width: 2px; border-style: solid solid none; border-color: white; height: 0.8em; width: 2em; border-top-left-radius: 1em; border-top-right-radius: 1em; box-sizing: border-box;" class="wx_cuuduu"></section> <section style="width: 1em; margin: -0.5em auto; box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 目录 </section> </section> <section style="border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-style: none solid solid; border-color: white; width: 2em; height: 0.8em; border-bottom-left-radius: 1em; border-bottom-right-radius: 1em; box-sizing: border-box;" class="wx_cuuduu"></section> <section style="width: 1em; margin: auto; font-size: 1em; font-family: inherit; font-weight: inherit; text-decoration: inherit; box-sizing: border-box;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 奇幻的森林 </section> </section> </section> </section> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset style="border: 0px; box-sizing: border-box; width: 100%; margin: 0.8em 0px 0.5em; clear: both; padding: 0px;" class="wx_cuuduu"> <img style="box-sizing: border-box; width: 100%; height: auto !important;" src="http://daxiangjie.cc/mmbiz/tw/080.jpg" class="wx_cuuduu"/> <section style="box-sizing: border-box; width: 9em; float: right; margin-top: -2em; margin-right: 1em; border-top-left-radius: 12em; border-top-right-radius: 12em; border-bottom-right-radius: 12em; border-bottom-left-radius: 12em; -webkit-transform: rotate3d(0, 0, 1, 15deg); transform: rotate3d(0, 0, 1, 15deg); opacity: 0.99;" class="wx_cuuduu"> <img style="box-sizing: border-box; width: 100%; border: 2px solid white; height: auto !important;" src="http://daxiangjie.cc/mmbiz/tw/081.jpg" class="wx_cuuduu"/> </section> <section style="box-sizing: border-box; margin: 0.5em 11em 0.5em 0px; color: rgb(102, 102, 102); font-size: 0.9em; font-family: inherit; font-weight: inherit; text-align: inherit; text-decoration: inherit;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 有关联的事物放在一起讲故事。 </section> </section> <section style="clear: both; box-sizing: border-box;" class="wx_cuuduu"> </section> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset style="border: 0px; box-sizing: border-box; width: 100%; margin: 0.8em 0px 0.5em; clear: both; overflow: hidden; padding: 0px;" class="wx_cuuduu"> <img style="box-sizing: border-box; width: 100%; float: left; height: auto !important;" src="http://daxiangjie.cc/mmbiz/tw/082.jpg" class="wx_cuuduu"/> <section style="display: inline-block; font-size: 2em; z-index: 100; padding: 0.1em 0.5em; margin: -1.5em 0px 0px; line-height: 1.2; box-sizing: border-box; float: left; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(62, 62, 62); border-color: rgb(142, 201, 101); background-color: rgb(255, 255, 255);" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 左标题 </section> </section> <section style="box-sizing: border-box; color: rgb(123, 129, 116); font-size: 0.7em; font-family: inherit; font-weight: inherit; text-decoration: inherit;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 副标题小一号 </section> </section> </section> </fieldset> </div> </li> <li> <div class="itembox"> <fieldset style="border: 0px; box-sizing: border-box; width: 100%; margin: 0.8em 0px 0.5em; clear: both; overflow: hidden; padding: 0px;" class="wx_cuuduu"> <img style="box-sizing: border-box; width: 100%; float: left; height: auto !important;" src="http://daxiangjie.cc/mmbiz/tw/083.jpg" class="wx_cuuduu"/> <section style="display: inline-block; font-size: 2em; z-index: 100; padding: 0.1em 0.5em; margin: -1.5em 0px 0px; line-height: 1.2; box-sizing: border-box; float: right; text-align: right; font-family: inherit; font-weight: inherit; text-decoration: inherit; color: rgb(255, 255, 255); border-color: rgb(249, 110, 87); background-color: rgba(200, 14, 71, 0.470588);" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 右标题 </section> </section> <section style="box-sizing: border-box; font-size: 0.7em; font-family: inherit; font-weight: inherit; text-decoration: inherit;" class="wx_cuuduu"> <section class="wx_cuuduu" style="box-sizing: border-box;"> 背景色可调透明度 </section> </section> </section> </fieldset> </div> </li> <br /> <br /> </ul> </div> <div id="tab9" class="tab_con dn"> <ul class="content clearfix"> <li> <div class="itembox"> <section style="border:1px solid rgb(198,198,199);height:2px;text-align: center;width:100%;margin-bottom: -12px;margin-top: 5px;display: inline-block;"></section> <section style="display: inline-block;width: 100%;"> <section style="width: 20%;float: left;"> <section style="width: 1em; height: 1em;margin: 0px 20px; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; box-sizing: border-box; color: rgb(158, 246, 166); border: 1px solid rgb(198,198,199);background-color: rgb(254,254,254);float:left"> <section style="display: inline-block; padding: 0px 0.5em; font-size: 1em; line-height: 2; box-sizing: border-box; color: inherit;"> <section style="box-sizing: border-box; color: inherit;"></section> </section> </section> <section> <p style="text-align: left;padding-top:6px;"><span class="wxid-wx_cuuduu" data-brushtype="text" style="color:rgb(12, 12, 12)">2015.01</span></p> </section> </section> <section style="width: 20%;float: left;"> <section style="width: 1em; height: 1em; margin: 0px 20px; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; box-sizing: border-box; color: rgb(158, 246, 166); border: 1px solid rgb(198,198,199);background-color: rgb(254,254,254);float:left"> <section style="display: inline-block; padding: 0px 0.5em; font-size: 1em; line-height: 2; box-sizing: border-box; color: inherit;"> <section style="box-sizing: border-box; color: inherit;"></section> </section> </section> <section> <p style="text-align: left;padding-top: 6px;"><span class="wxid-wx_cuuduu" data-brushtype="text" style="color:rgb(12, 12, 12)">2015.02</span></p> </section> </section> <section style="width: 20%;float: left;"> <section style="width: 1em; height: 1em; margin: 0px 20px; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; box-sizing: border-box; color: rgb(158, 246, 166); border: 1px solid rgb(198,198,199);background-color: rgb(254,254,254);float:left"> <section style="display: inline-block; padding: 0px 0.5em; font-size: 1em; line-height: 2; box-sizing: border-box; color: inherit;"> <section style="box-sizing: border-box; color: inherit;"></section> </section> </section> <section> <p style="text-align: left;padding-top: 6px;"><span class="wxid-wx_cuuduu" data-brushtype="text" style="color:rgb(12, 12, 12)">2015.03</span></p> </section> </section> <section style="width: 20%;float: left;"> <section style="width: 1em; height: 1em; margin: 0px 20px; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; box-sizing: border-box; color: rgb(158, 246, 166); border: 1px solid rgb(198,198,199);background-color: rgb(254,254,254);float:left"> <section style="display: inline-block; padding: 0px 0.5em; font-size: 1em; line-height: 2; box-sizing: border-box; color: inherit;"> <section style="box-sizing: border-box; color: inherit;"></section> </section> </section> <section> <p style="text-align: left;padding-top: 6px;"><span class="wxid-wx_cuuduu" data-brushtype="text" style="color:rgb(12, 12, 12)">2015.04</span></p> </section> </section> <section style="width: 20%;float: left;"> <section style="width: 1em; height:1em; margin: 0px 20px; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; box-sizing: border-box; color: rgb(158, 246, 166); border: 1px solid rgb(198,198,199);background-color: rgb(254,254,254);float:left"> <section style="display: inline-block; padding: 0px 0.5em; font-size: 1em; line-height: 2; box-sizing: border-box; color: inherit;"> <section style="box-sizing: border-box; color: inherit;"></section> </section> </section> <section> <p style="text-align: left;padding-top: 6px;"><span class="wxid-wx_cuuduu" data-brushtype="text" style="color:rgb(12, 12, 12)">2015.05</span></p> </section> </section> </section> </div> </li> <li> <div class="itembox"> <section class="wxqq-bg" style="padding: 40px 20px; background-color: rgb(58,61,73); font-size: 14px; border-color: rgb(245, 245, 244); color: rgb(123, 123, 111); background-position: initial initial; background-repeat: initial initial; "> <section class="wxqq-bg" style="color: inherit; background-color: rgb(58,61,73); max-width: 300px !important; margin: 0px auto; background-position: 104px 30px; background-repeat: no-repeat repeat; "> <p style="line-height: 40px; font-size: 20px; border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255); font-size:18px">2015年</span></p> <p style="margin-top: -35px; margin-left: 90px; line-height: 32px; border-color: rgb(245, 245, 244); color: inherit; "><img alt="clock.png" border="0" src="http://daxiangjie.cc/mmbiz/qt/005.png" style="border-color:rgb(245, 245, 244); color:inherit; height:30px; vertical-align:bottom; width:30px" title="clock.png" vspace="0"></p> <h1 style="line-height: 40px; margin-top: -40px; margin-left: 85px; padding-left: 60px; top: 0px; color: inherit; font-size: 20px; "><span style="color:rgb(255, 255, 255); font-size:18px">喵喵微信编辑器日志</span></h1> <p><br> </p> <p><br> </p> <section class="wx_cuuduu"> <p style="line-height: 32px; border-color: rgb(245, 245, 244); color: inherit; "><br> </p> <p style="font-size: 16px; line-height: 32px; border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">5月7日</span></p> <p style="margin-top: -30px; margin-left: 90px; border-color: rgb(245, 245, 244); color: inherit; "><img alt="red.png" class="wx_cuuduu98" src="http://daxiangjie.cc/mmbiz/qt/006.png" style="border-color:rgb(245, 245, 244); color:inherit; height:30px; vertical-align:bottom; width:30px" title="red.png"></p> <section style="margin-left: 140px; margin-top: -30px; border-color: rgb(245, 245, 244); color: inherit; "> <p style="color: inherit; font-size: 16px; border-color: rgb(245, 245, 244); "><span style="color:rgb(255, 255, 255)">微信图文编辑器上线!</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">提供丰富的图文样式</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">自由定义颜色,批量更换颜色</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><br> </p> </section> <p style="line-height: 32px; font-size: 16px; border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">5月10日</span></p> <p style="margin-top: -30px; margin-left: 90px; line-height: 32px; border-color: rgb(245, 245, 244); color: inherit; "><img alt="green.png" class="wx_cuuduu98" src="http://daxiangjie.cc/mmbiz/qt/007.png" style="border-color:rgb(245, 245, 244); color:inherit; height:30px; vertical-align:bottom; width:30px" title="green.png"></p> <section style="margin-left: 140px; margin-top: -30px; border-color: rgb(245, 245, 244); color: inherit; "> <p style="color: inherit; font-size: 16px; border-color: rgb(245, 245, 244); "><span style="color:rgb(255, 255, 255)">收录微信公众号增加到5000+!</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">新增了一大批收录的微信公众号</span></p> </section> <p style="border-color: rgb(245, 245, 244); color: inherit; "><br> </p> </section> <section class="wx_cuuduu"> <p style="line-height: 32px; border-color: rgb(245, 245, 244); color: inherit; "><br> </p> <p style="font-size: 16px; line-height: 32px; border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">5月17日</span></p> <p style="margin-top: -30px; margin-left: 90px; border-color: rgb(245, 245, 244); color: inherit; "><img alt="red.png" class="wx_cuuduu98" src="http://daxiangjie.cc/mmbiz/qt/006.png" style="border-color:rgb(245, 245, 244); color:inherit; height:30px; vertical-align:bottom; width:30px" title="red.png"></p> <section style="margin-left: 140px; margin-top: -30px; border-color: rgb(245, 245, 244); color: inherit; "> <p style="color: inherit; font-size: 16px; border-color: rgb(245, 245, 244); "><span style="color:rgb(255, 255, 255)">微信图文编辑器上线!</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">提供丰富的图文样式</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">自由定义颜色,批量更换颜色</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><br> </p> </section> <p style="line-height: 32px; font-size: 16px; border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">5月22日</span></p> <p style="margin-top: -30px; margin-left: 90px; line-height: 32px; border-color: rgb(245, 245, 244); color: inherit; "><img alt="green.png" class="wx_cuuduu98" src="http://daxiangjie.cc/mmbiz/qt/007.png" style="border-color:rgb(245, 245, 244); color:inherit; height:30px; vertical-align:bottom; width:30px" title="green.png"></p> <section style="margin-left: 140px; margin-top: -30px; border-color: rgb(245, 245, 244); color: inherit; "> <p style="color: inherit; font-size: 16px; border-color: rgb(245, 245, 244); "><span style="color:rgb(255, 255, 255)">收录微信公众号增加到5000+!</span></p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><span style="color:rgb(255, 255, 255)">新增了一大批收录的微信公众号</span></p> </section> <p style="border-color: rgb(245, 245, 244); color: inherit; "><br> </p> <p style="border-color: rgb(245, 245, 244); color: inherit; "><br> </p> </section> <p><br> </p> </section> </section> </div> </li> <li> <div class="itembox"> <p><img style="width:100%" src="http://daxiangjie.cc/mmbiz/qt/008.gif"></p> </div> </li> <li> <div class="itembox"> <section> <section style="margin: 0; font-size:1em; line-height:1.4em;"> <section style="font-size:2.7em; line-height: 1em; float:left; padding-right:0.1em微信某某;">愤怒</section> 男孩说可在这输入内容,喵喵一个神奇的客户端,新媒体人必备。微帮不微,因为有爱,记得把这个工具分享给小伙伴们哦。</section> </section> </div> </li> <li> <div class="itembox"> <p><img src="http://daxiangjie.cc/mmbiz/qt/009.gif"></p> </div> </li> <li> <div class="itembox"> <section style="max-width: 100%; display: inline-block; word-wrap: break-word !important; box-sizing: border-box !important;"> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;margin:.2em .5em .1em;color:#2a343a;font-size:1.8em;line-height:1;font-family:inherit"><strong style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important">微营销,找喵喵微信编辑器</strong></section> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;max-width:100%;border-top-style:solid;border-top-width:1px;border-top-color:#000;line-height:1"></section> <section style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;margin:.5em 1em;font-size:1em;line-height:1;font-family:inherit;color:#787c81;text-align:center"><strong style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important">喵喵微信编辑器号:<span style="max-width:100%;word-wrap:break-word!important;box-sizing:border-box!important;color:#9bbb59;">wx_cuuduu</span></strong></section> </section> </div> </li> <br /> <br /> </ul> </div> </div> </div> <!--左侧选择内容 E--> <!--<div class="goto">→</div>--> </div> <!--L E--> <!--R S--> <div class="right"> <div id="bdeditor" style="margin-left:-57px;"> <script charset="utf-8" src="ueditor/ueditor.config.js" type="text/javascript"></script> <script charset="utf-8" src="ueditor/ueditor.all.min.js" type="text/javascript"> </script> <!--建议手动加在语言,避免在ie下有时因为加载语言失败导致编辑器加载失败--> <!--这里加载的语言文件会覆盖你在配置项目里添加的语言类型,比如你在配置项目里配置的是英文,这里加载的中文,那最后就是中文--> <script charset="utf-8" src="ueditor/lang/zh-cn/zh-cn.js" type="text/javascript"></script> <script id="editor" style="width: 108.7%; height: 796px;" type="text/plain"></script> </div> </div> <!--R E--> </div> <!--手机预览 S--> <div id="previewbox"> <div style="height: 100%; padding-right: 0px; -ms-overflow-y: scroll;"> <div style="line-height: 12px; font-size: 15px; font-weight: 700;">喵喵微信编辑器</div> <div><em style="color: rgb(140, 140, 140); font-size: 12px; font-style: normal;">2017-01-01</em> <a id="post-user" style="color: rgb(96, 127, 166); font-size: 12px;" href="#" target="_blank">喵喵微信编辑器</a> </div> <div id="preview" style="height:360px; overflow-y:scroll;"></div> </div> <div id="phoneclose" style="top: 30px; width: 50px; height: 50px; right: 0px; font-size: 30px; font-weight: 700; position: absolute; cursor: pointer;">X</div> </div> <!--手机预览 E--> <div class="btn_container"> <a id="meitu" href="meitu.html" target="_blank" title="微信编辑器在线美图">美图编辑</a> <button class="btn btn-small copywx breath">一键复制</button> <a href="javascript:;" id="clear-editor" class="btn btn-small qingkong breath" data-toggle="tooltip" data-placement="right" title="" data-original-title="清空内容">清空内容</a> <div id="phone">手机预览</div> <a id="help" href="help.html" target="_blank" title="微信编辑器使用帮助">在线帮助</a> </div> <!--便捷 S--> <!--<div class="fullshowbox">全屏</div> <div class="fullhidebox">退出</div> <div id="phone">手机预览</div>--> <!--便捷 E--> </div> <script> //$(function(){ // $('#clear-editor').click(function(){ // if(confirm('是否确认清空内容,清空后内容将无法恢复')){ // setEditorHtml(""); // } // }); //}); $(function(){ $('#clear-editor').click(function(){ if(confirm('友情提醒:是否确认清空内容,清空后内容将无法恢复!')){ baidu.editor.getEditor('editor').setContent(''); } }); window.onbeforeunload = function(event) { (event || window.event).returnValue = "温馨提示:您即将关闭页面,是否确认编辑内容已经复制到微信公众平台后台?"; } }); </script> </div> <!-- 评论框 start --> <div id="footer" style="position:absolute; top:990px; width:100%;"> <!-- 评论框 end --> <!--foot S--> <div style=" margin:3px; width:1100; background:#8e04c3; color:#999;"> </div> </div> <script> /*小图标选择器*/ function shifuMouseDownMark(id) { var con = $('#'+id).find("span").html(); var range = UE.getEditor('editor').selection.getRange(); range.select(); UE.getEditor('editor').selection.getText(); UE.getEditor('editor').execCommand('insertHtml',con); } </script> <script> var d = UE.getEditor('editor'); function closead(){ var dom=document.getElementById('breakingnews1'); dom.style.display="none"; var dom=document.getElementById('breakingnews2'); dom.style.display="none"; var dom=document.getElementById('close'); dom.style.display="none"; } </script> <!--foot E--> <!--底部浮动隐藏 <div id="bottomToolbar"></div>--> </body> </html>
最后
以上就是着急诺言最近收集整理的关于V1.03的全部内容,更多相关V1内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复