fcid 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. data/app/assets/images/expand.gif +0 -0
  2. data/app/assets/javascripts/fcid.js +14 -0
  3. data/app/assets/javascripts/jquery.corner.js +152 -0
  4. data/app/assets/stylesheets/fcid/admin.css +3 -0
  5. data/app/assets/stylesheets/fcid/application.css +30 -0
  6. data/app/assets/stylesheets/fcid/apps.css +74 -0
  7. data/app/assets/stylesheets/fcid/base.css +151 -0
  8. data/app/assets/stylesheets/fcid/base_xiaonei.css +1678 -0
  9. data/app/assets/stylesheets/fcid/box.css +135 -0
  10. data/app/assets/stylesheets/fcid/chat.css +200 -0
  11. data/app/assets/stylesheets/fcid/coderay.css +10 -0
  12. data/app/assets/stylesheets/fcid/common.css +16 -0
  13. data/app/assets/stylesheets/fcid/dashboardpro.css +1205 -0
  14. data/app/assets/stylesheets/fcid/dialog.css +175 -0
  15. data/app/assets/stylesheets/fcid/dialogpro.css +296 -0
  16. data/app/assets/stylesheets/fcid/editor.css +73 -0
  17. data/app/assets/stylesheets/fcid/feeds.css +41 -0
  18. data/app/assets/stylesheets/fcid/flyout_menu.css +38 -0
  19. data/app/assets/stylesheets/fcid/form.css +176 -0
  20. data/app/assets/stylesheets/fcid/friend_selector.css +65 -0
  21. data/app/assets/stylesheets/fcid/friends.css +445 -0
  22. data/app/assets/stylesheets/fcid/green.css +942 -0
  23. data/app/assets/stylesheets/fcid/layout.css +185 -0
  24. data/app/assets/stylesheets/fcid/lightbox.css +26 -0
  25. data/app/assets/stylesheets/fcid/lister.css +49 -0
  26. data/app/assets/stylesheets/fcid/modalbox.css +153 -0
  27. data/app/assets/stylesheets/fcid/msg.css +62 -0
  28. data/app/assets/stylesheets/fcid/navigationpro.css +878 -0
  29. data/app/assets/stylesheets/fcid/notification.css +162 -0
  30. data/app/assets/stylesheets/fcid/pagination.css +45 -0
  31. data/app/assets/stylesheets/fcid/pill_filter.css +83 -0
  32. data/app/assets/stylesheets/fcid/post.css +69 -0
  33. data/app/assets/stylesheets/fcid/powerapple.css +2645 -0
  34. data/app/assets/stylesheets/fcid/rails.css +58 -0
  35. data/app/assets/stylesheets/fcid/register.css +711 -0
  36. data/app/assets/stylesheets/fcid/showbox.css +122 -0
  37. data/app/assets/stylesheets/fcid/super-actions.css +222 -0
  38. data/app/assets/stylesheets/fcid/tabs.css +370 -0
  39. data/app/assets/stylesheets/fcid/toolbar.css +10 -0
  40. data/{lib → app/models}/fcid/base.rb +0 -0
  41. data/{lib → app/models}/fcid/email.rb +0 -0
  42. data/{lib → app/models}/fcid/feed.rb +0 -0
  43. data/{lib → app/models}/fcid/friendship.rb +0 -0
  44. data/{lib → app/models}/fcid/message.rb +0 -0
  45. data/{lib → app/models}/fcid/notification.rb +0 -0
  46. data/{lib → app/models}/fcid/session.rb +0 -0
  47. data/{lib → app/models}/fcid/user.rb +0 -0
  48. data/lib/fcid.rb +0 -3
  49. data/lib/fcid/controller.rb +22 -24
  50. data/lib/fcid/version.rb +1 -1
  51. data/test/dummy/db/development.sqlite3 +0 -0
  52. data/test/dummy/db/test.sqlite3 +0 -0
  53. data/test/dummy/log/development.log +2 -0
  54. metadata +133 -67
@@ -0,0 +1,58 @@
1
+ /* from errors */
2
+ .fieldWithErrors {
3
+ padding:0px!important;
4
+ }
5
+
6
+ .fieldsWithErrors input {
7
+ background-color:#faa;
8
+ }
9
+
10
+
11
+ #errorExplanation {
12
+ width: 90%;
13
+ padding: 7px;
14
+ padding-bottom: 12px;
15
+ background-color:#fee;
16
+ margin: 10px auto;
17
+ border:1px solid #faa;
18
+ }
19
+
20
+ #errorExplanation h2 {
21
+ text-align: left;
22
+ font-weight: bold;
23
+ padding: 5px;
24
+ font-size: 12px;
25
+ }
26
+
27
+ #errorExplanation p {
28
+ margin-bottom: 0;
29
+ padding: 5px;
30
+ }
31
+
32
+ #errorExplanation ul li {
33
+ font-size: 12px;
34
+ list-style: disc;
35
+ margin-left:30px;
36
+ color:red;
37
+ }
38
+
39
+
40
+ /* notifications */
41
+ #notice,.notice {
42
+ font-size:13px;
43
+ text-align:left;
44
+ border:1px solid;
45
+ line-height:20px;
46
+ background:#FFFBE2 none repeat scroll 0% 0%;
47
+ border-color:#FFE222;
48
+ padding:8px;
49
+ margin:5px;
50
+ }
51
+
52
+ #error,.error {
53
+ background:#FFEBE8 none repeat scroll 0% 0%;
54
+ border:1px solid #DD3C10;
55
+ padding:8px;
56
+ margin:5px;
57
+ text-align:center;
58
+ }
@@ -0,0 +1,711 @@
1
+ form em { font-style:normal; color:#dd3c10;}
2
+ form strong { color:#000;}
3
+ #tabs { padding-left:30px;}
4
+ #pop { margin:10px 30px; padding:10px; border:1px solid #bdc7d8; background:#ecf1fa; text-align:center;}
5
+ #registerForm { margin:10px 30px;}
6
+ #registerForm table { }
7
+ #registerForm td { height:40px; vertical-align:middle; line-height:20px;}
8
+ #registerForm td.input { width:260px;}
9
+ #registerForm td.note { padding:0 10px; color:#808080; line-height:15px;}
10
+ #registerForm td.hey { padding:0 10px; background:#ecf1fa; color:#000; line-height:15px;}
11
+ #registerForm label { float:left; width:90px; margin-right:10px; color:#808080; font-weight:bold; text-align:right;}
12
+ #registerForm .inputtext, #submitCode .inputtext { width:144px; height:14px; padding:2px; border:1px solid #bdc7d8; line-height:14px;}
13
+ #registerForm .select { width:150px;}
14
+ #registerForm .inputfile { width:150px;}
15
+ #submitRegisterForm, #submitCode { padding:0 0 10px; text-align:center;}
16
+ #submitRegisterForm #submit, #submitCode #submit { width:180px;}
17
+ /*#pin input.inputtext { border-color:#fff;}*/
18
+ .errors_div { margin-left:30px; margin-right:30px;}
19
+ #fail { margin:10px 30px; padding:10px 20px; border:1px solid #bdc7d8; background:#ecf1fa;}
20
+ #fail ol, #fail ul { padding-left:20px;}
21
+ #fail p, #fail li { margin:5px 0;}
22
+ .attention p { margin:15px 30px; text-align:left; line-height:20px;}
23
+ p.centerAlign { text-align:center; margin:0 0 10px 0;}
24
+ label { color:gray;}
25
+ p.note { text-align:center; margin:20px 0 0 0; color:gray;}
26
+ div.operation { text-align:center; margin:10px 0 20px 0;}
27
+ div.operation input{ margin-right:20px;}
28
+
29
+ #flash { margin:10px auto; border:1px solid #bdc7d8; background:#fff;}
30
+ .success { background:#fff;}
31
+ .link { margin:10px 0; text-align:right;}
32
+
33
+ #registerForm #highlight {
34
+ border: 2px solid #80BCFF;
35
+ background: #FFFFE1;
36
+ margin-top: 0.8em;
37
+ }
38
+
39
+ #registerForm #highlight legend {
40
+ background:#FFF;
41
+ margin:0 10px;
42
+ padding:0 10px;
43
+ font-size: 1.2em;
44
+ font-weight: bold;
45
+ }
46
+
47
+ #registerForm #highlight legend strong {
48
+ color: red;
49
+ }
50
+
51
+ *html #registerForm #highlight {
52
+ position:relative; margin-top:1.6em; padding-top:.75em;
53
+ }
54
+ *html #registerForm #highlight legend {
55
+ position:absolute; top:-.75em; left:.5em;
56
+ }
57
+
58
+ *+html #registerForm #highlight {
59
+ position:relative; margin-top:1.6em; padding-top:.75em;
60
+ }
61
+ *+html #registerForm #highlight legend {
62
+ position:absolute; top:-.75em; left:.5em;
63
+ }
64
+
65
+ #registerForm fieldset span {
66
+ float: left;
67
+ padding-left: 20px;
68
+ color: #808080;
69
+ font-size: 1.0em;
70
+ }
71
+
72
+ #registerForm fieldset span#emailInfo {
73
+ float: none;
74
+ padding: 0;
75
+ color: #000;
76
+ }
77
+
78
+ #registerForm fieldset input {
79
+ float: left;
80
+ margin-top: -3px;
81
+ }
82
+ #registerForm fieldset p {
83
+ clear: both;
84
+ height: 2.5em;
85
+ padding-top: 1.0em;
86
+ }
87
+
88
+ #registerForm #terms p {
89
+ height: 1.5em;
90
+ line-height: 0.8em;
91
+ margin-top: 1.0em;
92
+ }
93
+
94
+ *+html #registerForm #terms p {
95
+ height: 1.5em;
96
+ line-height: 1.5em;
97
+ }
98
+
99
+ * html #registerForm #terms p {
100
+ height: 1.0em;
101
+ line-height: 1.0em;
102
+ }
103
+
104
+ #registerForm #terms .checkbox {
105
+ margin-right: 3px;
106
+ }
107
+
108
+ #registerForm .terms-container {
109
+ border: 1px solid #BDC7D8;
110
+ position:relative;
111
+ padding:5px;
112
+ height:5.0em;
113
+ overflow-y:scroll;
114
+ overflow-x:hidden;
115
+ }
116
+
117
+
118
+
119
+
120
+
121
+
122
+ .form-register {
123
+ margin:10px 30px;
124
+ }
125
+
126
+ .form-register h3 {
127
+ font-size: 1.2em;
128
+ border-bottom: 1px solid #D8DFEA;
129
+ line-height: 1.5em;
130
+ margin-bottom: 2.0em;
131
+ }
132
+
133
+ .form-register p {
134
+ padding: 0.8em 0;
135
+ overflow: hidden;
136
+ zoom: 1;
137
+ }
138
+
139
+ .form-register p label {
140
+ float:left;
141
+ width:120px;
142
+ margin-right:10px;
143
+ color:#808080;
144
+ font-weight:bold;
145
+ text-align:right;
146
+ height: 1.8em;
147
+ line-height: 1.8em;
148
+ }
149
+
150
+ .form-register p .inputtext {
151
+ float: left;
152
+ vertical-align: middle;
153
+ height: 14px;
154
+ line-height: 14px;
155
+ width: 144px;
156
+ padding: 2px;
157
+ }
158
+
159
+ .form-register p span {
160
+ float:left;
161
+ height: 1.8em;
162
+ line-height: 1.8em;
163
+ color: #808080;
164
+ padding-left: 20px;
165
+ }
166
+
167
+ .form-register p .labelRadio.selected {
168
+ background: yellow;
169
+ }
170
+
171
+ .form-register select {
172
+ width: 150px;
173
+ float: left;
174
+ }
175
+
176
+ #d2 #highSchoolProvince, #d2 #highSchoolCityCode {
177
+ width: 90px;
178
+ margin-right: 5px;
179
+ }
180
+
181
+ #d2 #highSchoolComponent_provinceCitySpan {
182
+ padding: 0;
183
+ }
184
+
185
+ .form-register .form-error {
186
+ /*display:block;*/
187
+ padding-left:20px;
188
+ color:red;
189
+ }
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+ /* Highlight Form */
203
+
204
+ .form-register #highlight {
205
+ border: 2px solid #80BCFF;
206
+ background: #FFFFE1;
207
+ margin-top: 0.8em;
208
+ }
209
+
210
+ .form-register #highlight legend {
211
+ background:#FFF;
212
+ margin:0 10px;
213
+ padding:0 10px;
214
+ font-size: 1.2em;
215
+ font-weight: bold;
216
+ }
217
+
218
+ .form-register #highlight legend strong {
219
+ color: red;
220
+ }
221
+
222
+ *html .form-register #highlight {
223
+ position:relative; margin-top:1.6em; padding-top:.75em;
224
+ }
225
+ *html .form-register #highlight legend {
226
+ position:absolute; top:-.75em; left:.5em;
227
+ }
228
+
229
+ *+html .form-register #highlight {
230
+ position:relative; margin-top:1.6em; padding-top:.75em;
231
+ }
232
+ *+html .form-register #highlight legend {
233
+ position:absolute; top:-.75em; left:.5em;
234
+ }
235
+
236
+ /* Term Form */
237
+
238
+ .form-register #terms p {
239
+ margin: 1.0em;
240
+ }
241
+
242
+ .form-register #terms h3 {
243
+ border: none;
244
+ line-height: 1.0em;
245
+ margin-bottom: 0;
246
+ }
247
+
248
+ *+html .form-register #terms p {
249
+ height: 1.5em;
250
+ line-height: 1.5em;
251
+ }
252
+
253
+ * html .form-register #terms p {
254
+ height: 1.0em;
255
+ line-height: 1.0em;
256
+ }
257
+
258
+ .form-register #terms .checkbox {
259
+ margin-right: 3px;
260
+ }
261
+
262
+ .form-register .terms-container {
263
+ border: 1px solid #BDC7D8;
264
+ position:relative;
265
+ padding:5px;
266
+ height:5.0em;
267
+ overflow-y:scroll;
268
+ overflow-x:hidden;
269
+ }
270
+
271
+ #terms label {
272
+ width: auto;
273
+ font-weight: normal;
274
+ color: #333;
275
+ }
276
+
277
+
278
+ #refinePage .cube {
279
+ padding: 20px;
280
+ }
281
+
282
+ #refinePage h3, #startPage h3 {
283
+ font-size: 1.2em;
284
+ }
285
+
286
+ #refinePage h3 strong {
287
+ color: #C30;
288
+ }
289
+
290
+ #refinePage .personIconList {
291
+ margin: 10px 0;
292
+ }
293
+
294
+ #refinePage h4, #startPage h4 {
295
+ border-bottom: 1px solid #D8DFEA;
296
+ line-height: 2.0em;
297
+ }
298
+
299
+ #refinePage .notes {
300
+ line-height: 2.0em;
301
+ }
302
+
303
+ #refinePage .notes strong {
304
+ font-size: 1.2em;
305
+ padding: 0 0.50em;
306
+ color: #C30;
307
+ }
308
+
309
+ #refinePage #content, #refinePage #oak {
310
+ overflow: visible;
311
+ }
312
+
313
+ #refinePage .empty {
314
+ color: #FFF;
315
+ }
316
+
317
+ #refinePage fieldset p span {
318
+ color: #808080;
319
+ }
320
+
321
+
322
+ .form-refine {
323
+ margin: 10px 0 0;
324
+ overflow:hidden;
325
+ zoom:1;
326
+ }
327
+
328
+ .form-refine .refine-profile {
329
+ width:450px;
330
+ float:left;
331
+ }
332
+
333
+ #refinePage .ava-preview {
334
+ width:110px;
335
+ border:1px solid #ccc;
336
+ }
337
+ #refinePage .ava-preview h4 {
338
+ background:#d8dfea;
339
+ color:#808080;
340
+ padding:0 5px;
341
+ line-height:1.6em;
342
+ }
343
+ #refinePage .ava-preview p {
344
+ padding:5px;
345
+ }
346
+ #refinePage .ava-preview img {
347
+ width:100px;
348
+ }
349
+ .form-refine p {
350
+ padding: 0.5em 0;
351
+ overflow: hidden;
352
+ zoom: 1;
353
+ }
354
+
355
+ .form-refine .format-to-p {
356
+ padding: 0.25em 0;
357
+ overflow: visible;
358
+ zoom: 1;
359
+ }
360
+
361
+ .form-refine p em, .form-refine .format-to-p em {
362
+ font-weight: bold;
363
+ color: #808080;
364
+ padding: 2px 2px 0 0;
365
+ }
366
+
367
+ .form-refine p label, .form-refine .format-to-p label {
368
+ float:left;
369
+ width:7.0em;
370
+ margin-right:10px;
371
+ color:#808080;
372
+ font-weight:bold;
373
+ text-align:right;
374
+ height: 1.8em;
375
+ line-height: 1.8em;
376
+ }
377
+
378
+ .form-refine p .inputtext, .form-refine .format-to-p .inputtext {
379
+ vertical-align: middle;
380
+ height: 14px;
381
+ line-height: 14px;
382
+ width: 144px;
383
+ padding: 2px;
384
+ }
385
+
386
+ .form-refine p .select, .form-refine .format-to-p .select {
387
+ vertical-align: middle;
388
+ }
389
+
390
+ .form-refine .inputsubmit {
391
+ width: 6.0em;
392
+ }
393
+
394
+ .form-refine #juniorhighschool, .form-refine #elementaryschool {
395
+ margin-right: 4px;
396
+ }
397
+
398
+ * html .form-refine #juniorhighschool, * html .form-refine #elementaryschool {
399
+ margin-right: 1px;
400
+ }
401
+
402
+ .form-refine span.note {
403
+ color: #808080;
404
+ padding-left: 1.0em;
405
+ }
406
+
407
+
408
+ #startPage #side-column {
409
+ padding: 10px 0;
410
+ }
411
+
412
+ #startPage h4 {
413
+ margin-top: 1.0em;
414
+ }
415
+
416
+ #startPage h4 span {
417
+ font-weight: normal;
418
+ }
419
+
420
+ #startPage .personIconList {
421
+ margin: 0.5em 0;
422
+ }
423
+
424
+ #startPage #side-column h3 {
425
+ background: #E9E9E9;
426
+ font-size: 1.0em;
427
+ line-height: 1.7em;
428
+ text-indent: 0.5em;
429
+ }
430
+
431
+ #startPage .inputsubmit {
432
+ padding: 0;
433
+ width: 8.0em;
434
+ height: 28px;
435
+ line-height: 28px;
436
+ font-size: 13px;
437
+ font-weight: bold;
438
+ }
439
+
440
+ #submitYours .form-register p {
441
+ padding: 0.6em 0;
442
+ }
443
+
444
+ #submitYours .form-register select {
445
+ width: 10em;
446
+ margin-right: 0.5em;
447
+ }
448
+
449
+ #submitYours .form-register .address-input {
450
+ padding: 0;
451
+ }
452
+
453
+ #submitYours .form-register .address-input input {
454
+ width: 30.0em;
455
+ }
456
+
457
+ #submitYours .form-register .address-input span {
458
+ padding: 0;
459
+ }
460
+
461
+ #submitYours .form-register h3 {
462
+ margin-bottom: 0;
463
+ }
464
+
465
+ #submitYours .form-register .notes {
466
+ border: none;
467
+ padding: 0;
468
+ line-height: 1.5em;
469
+ }
470
+
471
+ #submitYours .form-register fieldset {
472
+ margin-top: 2.0em;
473
+ }
474
+
475
+ #submitYours .form-register em {
476
+ color:#808080;
477
+ font-weight:bold;
478
+ padding:2px 2px 0pt 0pt;
479
+ }
480
+
481
+ .refine-photo {
482
+ padding:30px 60px;
483
+ }
484
+ .refine-photo h2 {
485
+ line-height:1.6em;
486
+ border-bottom:1px solid #d8dfea;
487
+ }
488
+ .refine-avatar {
489
+ padding:20px 50px;
490
+ overflow:hidden;
491
+ zoom:1;
492
+ }
493
+ .refine-avatar .float-right {
494
+ width:260px;
495
+ }
496
+
497
+ #refinePage .refine-avatar .float-right h3 {
498
+ font-size:12px;
499
+ font-weight:normal;
500
+ padding-bottom:8px;
501
+ }
502
+
503
+ .refine-avatar .float-right span {
504
+ color:#808080;
505
+ display:block;
506
+ line-height:1.3em;
507
+ margin-bottom:1em;
508
+ }
509
+ .refine-photo h2 .skip {
510
+ background:transparent url(/images/arrow.gif) no-repeat scroll 100% 50%;
511
+ float:right;
512
+ font-size:12px;
513
+ font-weight:normal;
514
+ margin-top:3px;
515
+ padding-right:0.75em;
516
+ }
517
+
518
+
519
+
520
+
521
+
522
+
523
+
524
+ #refinePhoto .hintgray {
525
+ color:#808080;
526
+ }
527
+ #refinePhoto .photo-upload {
528
+ background:url(/images/photo_upload.png) no-repeat;
529
+ width:211px;
530
+ height:225px;
531
+ float:left;
532
+ }
533
+ #refinePhoto h4 {
534
+ border-bottom:1px solid #D8DFEA;
535
+ line-height:2em;
536
+ }
537
+ #refinePhoto p.notes {
538
+ line-height:2em;
539
+ }
540
+ #refinePhoto #single-column {
541
+ overflow:hidden;
542
+ zoom:1;
543
+ }
544
+ #refinePhoto .cube {
545
+ float:right;
546
+ width:345px;
547
+ height:193px;
548
+ padding:15px 20px;
549
+ }
550
+ #refinePhoto #pictureinfuture h4 span {
551
+ float:right;
552
+ font-weight:normal;
553
+ }
554
+ #refinePhoto .narrowform {
555
+ padding-top:15px;
556
+ }
557
+
558
+ .refine-avatar #previewhead {width:140px;}
559
+
560
+
561
+ #pageRegister .invited {
562
+ overflow: hidden;
563
+ zoom:1;
564
+ padding-bottom: 10px;
565
+ }
566
+
567
+ #pageRegister .invited img {
568
+ float:left;
569
+ margin-right: 1.0em;
570
+ }
571
+
572
+ #pageRegister .invited h3 {
573
+ margin-bottom: 0.5em;
574
+ }
575
+ #refinePage .cube h4 span.regmust{ color:#999; font-weight:normal;}
576
+ #refinePage .emptyhidden { display:none; }
577
+
578
+
579
+
580
+ /*new register*/
581
+ #content.reginbox{ padding:40px 0px 10px 50px;}
582
+ #welcomepage #content.reginbox{border-left:1px #ccc solid; !important}
583
+ #welcomepage #content.reginbox p{ clear:both;}
584
+
585
+ #reg_headlogo{ width:560px; height:83px; margin-bottom:20px; background:#fff url(/images/logo_158.gif) left top no-repeat;}
586
+ #reg_headlogo p#headtext{ margin:0; padding:0; float:right; width:380px; height:81px; border-top:1px #ccc solid; border-bottom:1px #ccc solid;}
587
+ #reg_headlogo p#headtext span{ display:block; line-height:20px; color:#333; font-size:16px; margin:20px 17px;}
588
+
589
+ #reg_contentbox{ overflow:hidden; margin-bottom:30px;}
590
+
591
+ #reg_contentbox .leftcon{ float:left; width:200px; margin-right:18px; margin-top:10px;}
592
+
593
+ #reg_contentbox .leftcon ul{ margin-top:5px;}
594
+ #reg_contentbox .leftcon ul li{ line-height:30px; padding-left:25px;}
595
+ #reg_contentbox .leftcon ul li.listitem1{ background:#fff url(../img/newsfeed/group.gif) left center no-repeat;}
596
+ #reg_contentbox .leftcon ul li.listitem2{ background:#fff url(../img/newsfeed/photo.gif) left center no-repeat;}
597
+ #reg_contentbox .leftcon ul li.listitem3{ background:#fff url(../img/newsfeed/privacy.gif) left center no-repeat;}
598
+ #reg_contentbox .leftcon ul li.listitem4{ background:#fff url(../img/newsfeed/friends.gif) left center no-repeat;}
599
+ #reg_contentbox .leftcon ul li.listitem5{ background:#fff url(../img/newsfeed/wall_post.gif) left center no-repeat;}
600
+
601
+ #reg_contentbox .rightcon{ float:left; width:300px; padding:20px 10px 20px 30px; background-color:#DFE4EE; border:1px #C6CFE1 solid;}
602
+ #reg_contentbox .rightcon h2{ margin-bottom:13px;}
603
+ #reg_contentbox .rightcon p{ padding:0; margin:0; margin-bottom:10px; clear:both; }
604
+ #reg_contentbox .rightcon p .inputtext{ width:188px;}
605
+ #reg_contentbox .rightcon p a.registbtn{ margin-left:60px; display:block; width:86px; height:25px; background:url(/images/reg.gif) center center no-repeat;}
606
+ *html #reg_contentbox .rightcon p a.registbtn{ margin-left:63px;}
607
+
608
+ #reg_contentbox .rightcon p.explain{ margin-left:60px; margin-right:35px;}
609
+ #reg_contentbox .rightcon p.explain a{ font-weight:normal;}
610
+
611
+ .reginbox p.schoolinxiaonei{ color:#808080; margin-bottom:15px; clear:both;}
612
+ .reginbox p.schoolinxiaonei a{ color:#5D74A2; font-weight:bold;}
613
+
614
+
615
+
616
+ /*#reg_contentbox formelement style*/
617
+
618
+ #reg_contentbox .rightcon label{ float:left; height:1.8em; line-height:1.8em; text-align:right; width:60px;}
619
+ /*#reg_contentbox .rightcon label.label1{ width:50px;}*/
620
+ #reg_contentbox #panl_1{}
621
+ #reg_contentbox #panl_2{ display:none;}
622
+
623
+ #reg_contentbox .rightcon label.forverify{ float:left; height:1.8em; line-height:1.8em; width:100px; text-align:right;}
624
+ #reg_contentbox .rightcon .labelRadio input{ background:none;}
625
+
626
+ #reg_contentbox .rightcon select{ width:150px; padding:2px;}
627
+ #reg_contentbox .rightcon p.fewmargin{ margin:5px;}
628
+ #reg_contentbox .rightcon p.fewmargin .short{ width:144px; padding:2px;}
629
+ #reg_contentbox .rightcon p.fewmargin select.short{ width:150px; padding:2px;}
630
+
631
+ #reg_contentbox .rightcon p.verifypic{ width:256px; height:41px; border:1px #ccc solid; text-align:center; padding:10px 0; background-color:#fff;}
632
+ #reg_contentbox .rightcon p input.verify{ width:100px;}
633
+ #reg_contentbox .rightcon p.s2sumbit{ border-top:1px #ccc solid; padding:10px 0 0 0; margin:0; margin-right:42px;}
634
+ #reg_contentbox .rightcon p.s2sumbit a.back{ padding-left:15px; height:25px; line-height:25px; font-weight:bold; float:left; background:url(/images/arrow_back.gif) left center no-repeat;}
635
+ #reg_contentbox .rightcon p.s2sumbit a.registbtn{ margin-left:101px;}
636
+
637
+ #reg_contentbox .rightcon div.errors_div{ margin:10px 42px 0 0;}
638
+ /*END-#reg_contentbox formelement style*/
639
+
640
+
641
+ .reginbox div.footsearchbox{ overflow:hidden; border-top:1px #ccc solid; padding:20px 0 0px 5px; width:555px; margin-bottom:10px;}
642
+ *html .reginbox div.footsearchbox{ padding:20px 0 10px 5px; margin-bottom:0;}
643
+ *+html .reginbox div.footsearchbox{ padding:20px 0 10px 5px; margin-bottom:0;}
644
+
645
+
646
+ .reginbox div.footsearchbox h2.findtextlink{ font-size:15px; padding-left:23px; width:110px; float:left; color:#3B5888; background:#fff url(../img/newsfeed/findfriend.gif) left center no-repeat;}
647
+ .reginbox div.footsearchbox p.searching{ font-size:15px; float:right; color:#555; width:330px;}
648
+ *+html .reginbox div.footsearchbox p.searching{ margin-top:-5px;}
649
+
650
+
651
+ .reginbox div.footsearchbox p.searching label.forsearchinput{ color:#555;}
652
+ .reginbox div.footsearchbox p.searching .inputtext{ width:122px; padding-left:20px; background:#fff url(/images/searchinputbg.gif) left center no-repeat;}
653
+ *html .reginbox div.footsearchbox p.searching .inputtext{ padding-top:0;}
654
+
655
+ .reginbox div.footsearchbox p.searching .subbutton{
656
+ background-color:#3B5888; border:1px #d8dfea solid; cursor:pointer; text-align:center; padding:2px 3px 2px 3px; height:22px; font-size:12px; margin-left:2px;}
657
+ *html .reginbox div.footsearchbox p.searching .subbutton{ height:20px;}
658
+
659
+ .reginbox div.footsearchbox a.more{ display:block; clear:both; margin-right:50px; margin-top:10px; font-size:12px; text-align:right;}
660
+
661
+ /*new registerpage step2style*/
662
+ .highlighterror{ background-color:#FEFFCF;}
663
+ .form-register p span.code{ float:none; padding-left:0; margin-bottom:10px; display:block;}
664
+ #submit.inputsubmit{ width:180px;}
665
+
666
+ .form-register p.forcodepwslevel{ padding-left:0; color:#808080; margin:0; padding:0; margin-top:-12px;}
667
+ .form-register p.forcodepwslevel span{ padding-left:0;}
668
+ .form-register p span.pwslevel1{ padding:0; color:#808080; font-weight:bold; }
669
+ .form-register p span.pwslevel2{ padding:0; color:#0064FF; font-weight:bold;}
670
+ .form-register p span.pwslevel3{ padding:0; padding:0; color:#00A721; font-weight:bold;}
671
+ .form-register p #pwdlevel{ padding-left:3px;}
672
+ .form-register p.foottext{ margin-bottom:-15px; margin-top:10px;}
673
+
674
+ *html #welcomepage #banner{ border:0; padding:0; margin:0; overflow:hidden; width:657px;}
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
+