Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 求高手指教,论坛首页背景修改问题【有图】

[复制链接]
kyoct 发表于 2012-8-8 22:23:41 | 显示全部楼层 |阅读模式
问题描述
适用版本: Discuz! X2.5
浏览器: IE6 IE7 IE8 360 firefox 
使用模板: 其他模板(请在回帖中说明模板的名称或者是模板的下载地址)
BUG地址: http://www.like-first.com/bbs/forum.php




如图。首页背景颜色,就是左右两边暗灰色的背景颜色要如何修改。

附上COMMON.css  望知道的高手说下。万分感谢。

实在是研究不出来在哪儿修改。
  1. /* ----------------------------------

  2. Main CSS file for Discuz! X
  3. (C) Comsenz Inc.
  4. http://www.comsenz.com
  5. Created & Modified by Lushnis, Pony, Dfox & DragonLee.

  6. ----------------------------------

  7. 结构目录:
  8. 1. 重定义浏览器默认样式
  9. 2. 全局常用 CSS 样式
  10. 3. 表单及表单元素
  11. 4. 页面布局以及通用的区块样式
  12. 5. 列表样式vwmy
  13. 6. 其他特定功能块
  14. 1. 个人中心面板
  15. 2. 简易编辑器
  16. 3. 弹出菜单、弹出层及弹出窗口
  17. 4. 联系人列表、短消息窗口
  18. 5. 登录和注册
  19. 6. 其他
  20. 7. 拖拽及页面 DIY

  21. * 其他页面专用样式参见 module.css

  22. ----------------------------------

  23. 常用变量说明:

  24. 通用边框颜色: {COMMONBORDER} #CDCDCD
  25. 通用背景填充色: {COMMONBG} #F2F2F2
  26. 特殊边框颜色: {SPECIALBORDER} #D1D9DF
  27. 特殊背景填充色: {SPECIALBG} #E9F2F9

  28. ----------------------------------

  29. CSS 样式模块的格式示例:

  30. Name: 模块名称
  31. Level: 级别(Global, Channel, Function)
  32. Dependent: 依赖关系,该模块必须依赖于何种模块
  33. Sample: 用法示例,或指出改模块所作用的直接页面
  34. Explain: 附加说明
  35. Author: 创建者 日期(两位数年月日时)
  36. Last Modify: 最终修改者 日期(两位数年月日时)

  37. ----------------------------------

  38. CSS 写作注意事项:
  39. 1. 属性写在一行内,属性之间、属性名和值之间以及属性与“{}”之间须有空格,例如:.class { width: 400px; height: 300px; }
  40. 2. 属性的书写顺序:
  41. 2.1. 按照元素模型由外及内,由整体到细节书写,大致分为五组:
  42. 位置:position,left,right,float
  43. 盒模型属性:display,margin,padding,width,height
  44. 边框与背景:border,background
  45. 段落与文本:line-height,text-indent,font,color,text-decoration,...
  46. 其他属性:overflow,cursor,visibility,...
  47. 2.2. 针对特殊浏览器的属性,应写在标准属性之前,例如:-webkit-box-shadow:; -moz-box-shadow:; box-shaow:;
  48. 3. 谨慎添加新的选择符规则,尤其不可滥用 id,尽可能继承和复用已有样式
  49. 4. 选择符、属性、值均用小写(格式的颜色值除外),缩写的选择符名称须说明缩写前的全称,例如 .cl -> Clearfix
  50. 5. 避免使用各种 CSS Hack,如需对 IE 进行特殊定义,请参阅下节“关于 CSS Hack 的说明”
  51. 6. 勿使用冗余低效的 CSS 写法,例如:
  52. ul li a span { ... }
  53. 7. 慎用 !important
  54. 8. 建议使用在 class/id 名称中的词语
  55. 6.1. 表示状态:a->active
  56. 6.2. 表示结构:h->header,c->content,f->footer
  57. 6.3. 表示区域:mn->main,sd->side,nv-navigation,mu->menu
  58. 6.4. 表示样式:l-list,tab,p_pop
  59. 9. 开发过程中的未定事项,须用 [!] 标出,以便于后续讨论整理

  60. ----------------------------------

  61. 关于 CSS Hack 的说明:

  62. 所有 IE浏览器适用: .ie_all .foo { ... }
  63. IE6 专用: .ie6 .foo { ... }
  64. IE7 专用: .ie7 .foo { ... }
  65. IE8 专用: .ie8 .foo { ... }

  66. ---------------------------------- */

  67. /*
  68. Name: mod_reset
  69. Level: Global
  70. Explain: 重定义浏览器默认样式
  71. Last Modify: Pony
  72. */
  73. * { word-wrap: break-word; }
  74. body { {BGCODE}; }
  75. body, input, button, select, textarea { font: {FONTSIZE} {FONT}; color: {TABLETEXT}; }
  76. textarea { resize: none; }
  77. body, ul, ol, li, dl, dd, p, h1, h2, h3, h4, h5, h6, form, fieldset, .pr, .pc { margin: 0; padding: 0; }
  78. table { empty-cells: show; border-collapse: collapse; }
  79. caption, th { text-align: left; font-weight: 400; }
  80. ul li, .xl li { list-style: none; }
  81. h1, h2, h3, h4, h5, h6 { font-size: 1em; }
  82. em, cite, i { font-style: normal; }
  83. a { color: {LINK}; text-decoration: none; }
  84. a:hover { text-decoration: underline; }
  85. a img { border: none; }
  86. label { cursor: pointer; }
  87. /*
  88. Name: mod_float
  89. Level: Global
  90. Sample: class="z/y"
  91. Explain: .z/.y 浮动 left/right
  92. Last Modify: lushnis
  93. */
  94. .z { float: left; } .y { float: right; }

  95. /*
  96. Name: mod_clearfix
  97. Level: Global
  98. Sample: class="cl"
  99. Explain: Clearfix,避免因子元素浮动而导致的父元素高度缺失能问题
  100. Last Modify: lushnis
  101. */
  102. .cl:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .cl { zoom: 1; }

  103. /*
  104. Name: mod_hr
  105. Level: Global
  106. Sample: <hr />
  107. Explain: 重定义 <hr /> 元素的样式,去除默认边距
  108. Last Modify: lushnis
  109. */
  110. hr { display: block; clear: both; *margin-top: -8px !important; *margin-bottom: -8px !important; }
  111. .mn hr, .sd hr { margin: 0 10px; }
  112. .area hr { margin-left: 0 !important; margin-right: 0 !important; }
  113. /*
  114. Name: mod_hr_solid
  115. Level: Global
  116. Dependent: mod_hr
  117. Sample: <hr class="l" />
  118. Explain: 定义 1px 高度实线样式的 <hr /> 元素,具有两个个扩展样式,.l2 和 .l3,分别实现 2px 和 3px 的实线分割线
  119. Last Modify: lushnis
  120. */
  121. hr.l { height: 1px; border: none; background: {COMMONBORDER}; color: {COMMONBORDER}; }
  122. hr.l2 { height: 2px; }
  123. hr.l3 { height: 3px; }
  124. /*
  125. Name: mod_hr_dashed
  126. Level: Global
  127. Dependent: mod_hr
  128. Sample: <hr class="da" />
  129. Explain: 定义 1px 高度虚线样式的 <hr /> 元素
  130. Last Modify: lushnis
  131. */
  132. hr.da { height: 0; border: none; border-top: 1px dashed {COMMONBORDER}; background: transparent; color: transparent; }

  133. /* [!]使用注意 */
  134. hr.bk { margin-bottom: 10px !important; *margin-bottom: 2px !important; height: 0; border: none; border-top: 1px solid {WRAPBG}; background: transparent; color: transparent; }
  135. .n .sd hr.bk { border-top-color: #F9F9F9; }
  136. /* 清除Margin */
  137. hr.m0 { margin-left: 0; margin-right: 0; }

  138. /*
  139. Name: mod_page_header
  140. Level: Global
  141. Sample: <h1 class="ph">Text</h1>
  142. Explain: 页面中标题级别的文字 [!]此处须整合为一个单独 class
  143. Last Modify: lushnis
  144. */
  145. /* .wx --> weight text 粗体字,通常用于大标题 */
  146. .wx, .ph { font-family: 'Microsoft YaHei', 'Hiragino Sans GB', 'STHeiti', Tahoma, 'SimHei', sans-serif; font-weight: 100; }
  147. /* Page header */ .ph { font-size: 20px; }
  148. /* Main title */ .mt { padding: 10px 0; font-size: 16px; }

  149. /* 行内分割竖线 */ .pipe { margin: 0 5px; color: #CCC; }

  150. /* 文本属性:字号、颜色、粗细 */
  151. /*
  152. Name: mod_text_size
  153. Level: Global
  154. Sample: class="xs*"
  155. Explain: 文字字号,分为四个级别
  156. Last Modify: lushnis
  157. */
  158. .xs0 { font-family: {SMFONT}; font-size: {SMFONTSIZE}; -webkit-text-size-adjust: none; }
  159. .xs1 { font-size: 12px !important; }
  160. .xs2 { font-size: 14px !important; }
  161. .xs3 { font-size: 16px !important; }
  162. /*
  163. Name: mod_text_gray_level
  164. Level: Global
  165. Dependent: -
  166. Sample: class="xs[*]"
  167. Explain: 文字字号,分为四个级别
  168. Last Modify: lushnis
  169. */
  170. .xg1, .xg1 a { color: {LIGHTTEXT} !important; }
  171. .xg1 .xi2 { color: {HIGHLIGHTLINK} !important; }
  172. .xg2 { color: {MIDTEXT}; }
  173. /*
  174. Name: mod_text_importance_level
  175. Level: Global
  176. Sample: class="xs[*]"
  177. Explain: 文字提亮级别,分为两级,默认模板中,1为橙色,2为蓝色
  178. Last Modify: lushnis
  179. */
  180. .xi1, .onerror { color: {NOTICETEXT}; }
  181. .xi2, .xi2 a, .xi3 a { color: {HIGHLIGHTLINK} ; }
  182. /*
  183. Name: mod_text_weight_level
  184. Level: Global
  185. Sample: class="xs[*]"
  186. Explain: 文字字号,分为四个级别
  187. Last Modify: lushnis
  188. */
  189. .xw0 { font-weight: 400; }
  190. .xw1 { font-weight: 700; }
  191. /*
  192. Name: mod_border
  193. Level: Global
  194. Dependent: -
  195. Sample: class="bbda/bbs"
  196. Explain: 边框样式,该模块仅作用于元素的下边框,分为虚线和实线两种,宽度均为 1px
  197. Last Modify: lushnis
  198. */
  199. .bbda { border-bottom: 1px dashed {COMMONBORDER}; }
  200. .bbs { border-bottom: 1px solid {COMMONBORDER} !important; }
  201. /*
  202. Name: mod_border_reset
  203. Level: Global
  204. Sample: class="bw0/bw0_all"
  205. Explain: 去除边框
  206. Last Modify: lushnis
  207. */
  208. .bw0 { border: none !important; }
  209. .bw0_all, .bw0_all th, .bw0_all td { border: none !important; }
  210. /*
  211. Name: mod_background_reset
  212. Level: Global
  213. Sample: class="bg0_c/bg0_i/bg0_all"
  214. Explain: 去除背景,bg0_c、bg0_i 和 bg0_all 分别为去除背景颜色、去除背景图片和去除所有背景元素
  215. Last Modify: Pony
  216. */
  217. .bg0_c { background-color: transparent !important; }
  218. .bg0_i { background-image: none !important; }
  219. .bg0_all { background: none !important; }

  220. /*
  221. Name: mod_notice_line
  222. Level: Global
  223. Sample: <div class="ntc_l">
  224. Explain: 黄色背景的提示条,一般用在单行醒目提示,不可用于多行块级区域
  225. Last Modify: lushnis
  226. */
  227. .ntc_l { padding: 5px 10px; background: #FEFEE9; }
  228. .ntc_l .d { width: 20px; height: 20px; background: url({IMGDIR}/op.png) no-repeat 0 0; line-height: 9999px; overflow: hidden; }
  229. .ntc_l .d:hover { background-position: 0 -20px; }

  230. /* 圆角 [!]此处考虑弃用 */
  231. .brs, .avt img, .oshr { -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
  232. .brm { -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; }
  233. .brw { -moz-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px; }
  234. /*
  235. Name: mod_margin
  236. Level: Global
  237. Sample: class="mtn/mtm/mtw/..."
  238. Explain: 外边距样式,作用于元素的上下外边距,上下各具有 n, m, w 三个级别
  239. Last Modify: lushnis
  240. */
  241. .mtn { margin-top: 5px !important; }
  242. .mbn { margin-bottom: 5px !important; }
  243. .mtm { margin-top: 10px !important; }
  244. .mbm { margin-bottom: 10px !important; }
  245. .mtw { margin-top: 20px !important; }
  246. .mbw { margin-bottom: 20px !important; }
  247. /*
  248. Name: mod_padding
  249. Level: Global
  250. Sample: class="ptn/ptm/ptw/..."
  251. Explain: 内边距样式,作用于元素的上下内边距,上下各具有 n, m, w 三个级别
  252. Last Modify: lushnis
  253. */
  254. .ptn { padding-top: 5px !important; }
  255. .pbn { padding-bottom: 5px !important; }
  256. .ptm { padding-top: 10px !important; }
  257. .pbm { padding-bottom: 10px !important; }
  258. .ptw { padding-top: 20px !important; }
  259. .pbw { padding-bottom: 20px !important; }
  260. /*
  261. Name: mod_avatar
  262. Level: Global
  263. Sample: <div class="avt"><img src="avatar source" alt="username" /></div>
  264. Explain: 标准尺寸头像样式,默认为 48px*48px,带边框
  265. Last Modify: lushnis
  266. */
  267. .avt img { padding: 2px; width: 48px; height: 48px; background: {WRAPBG}; border: 1px solid; border-color: {COMMONBG} {COMMONBORDER} {COMMONBORDER} {COMMONBG}; }
  268. /*
  269. Name: mod_avatar_middle, mod_avatar_small
  270. Level: Global
  271. Sample: <div class="avtm/avts"><img src="avatar source" alt="username" /></div>
  272. Explain: 中等尺寸和小尺寸头像样式,中等尺寸为宽度 120px,高度按比例;小尺寸为 24px*24px
  273. Last Modify: lushnis
  274. */
  275. .avtm img { width: 120px; height: auto; }
  276. .avts img { width: 24px; height: 24px; vertical-align: middle; }
  277. /*
  278. Name: mod_emp
  279. Level: Global
  280. Sample: <p class="emp">暂无数据</p>
  281. Explain: 页面中无数据输出时,用此样式显示相关提示,如无特殊必要,建议使用 <p> 而不是 <div>
  282. Last Modify: lushnis
  283. */
  284. .emp { padding: 20px 10px; }
  285. .emp a { color: {HIGHLIGHTLINK}; text-decoration: underline !important; }
  286. /*
  287. Name: mod_align
  288. Level: Global
  289. Sample: class="vm/hm"
  290. Explain: 纵向及横向对齐方式
  291. Last Modify: lushnis
  292. */
  293. .vm { vertical-align: middle; }
  294. .vm * { vertical-align: middle; }
  295. .hm { text-align: center; }
  296. /*
  297. Name: mod_alt
  298. Level: Global
  299. Sample: class="{echo swapclass('alt');}"
  300. Explain: 隔行换色时深色背景
  301. Last Modify: lushnis
  302. */
  303. .alt, .alt th, .alt td { background-color: {COMMONBG}; }
  304. /*
  305. Name: mod_notice
  306. Level: Global
  307. Sample: class="notice"
  308. Explain: 类似统计中需注意的文字样式 [!]此处须考虑名称简写为 ntc
  309. Last Modify: lushnis
  310. */
  311. .notice { clear: both; margin: 5px 0; padding: 3px 5px 3px 20px; background: url({IMGDIR}/notice.gif) no-repeat 2px 6px; }
  312. /*
  313. Name: mod_ajax_wait_info
  314. Level: Global
  315. Sample: id="ajaxwaitid"
  316. Explain: 相应页面中 AJAX 请求时的状态显示
  317. Last Modify: lushnis
  318. */
  319. #ajaxwaitid { display: none; position: absolute; right: 0; top: 0; z-index: 1; padding: 0 5px; background: #D00; color: {LIGHTLINK}; }
  320. /*
  321. Name: mod_showmenu
  322. Level: Global
  323. Sample: class="showmenu"
  324. Explain: 下拉菜单
  325. Last Modify: lushnis
  326. */
  327. .showmenu { padding-right: 16px; background: url({IMGDIR}/arrwd.gif) no-repeat 100% 50%; cursor: pointer; white-space: nowrap; }
  328. #um .showmenu { margin-right: -5px; }

  329. /*
  330. Name: mod_cursor
  331. Level: Global
  332. Sample: class="cur1"
  333. Explain: 鼠标样式,可以根据需要按序添加
  334. Last Modify: Pony
  335. */
  336. .cur1 { cursor: pointer; }

  337. /* 如果验证码有错乱,可添加此样式.sec(全局,修改时要小心,会涉及分享、快速回复和 feed日志相册中的评论等地方) by Pony */
  338. .ie6 .sec .p_pop { white-space: expression(this.offsetWidth >= 220 ? 'normal' : 'nowrap'); width: expression(this.offsetWidth >= 220 ? 200 : 'auto'); }


  339. /* ------------------------------------------------------------------------ 表单及表单元素 */
  340. /*
  341. .pn button
  342. .pnc button with light color
  343. .pnp post button
  344. .px input[text]
  345. .pt textarea
  346. .pf input[file]
  347. .pc input[checkbox]
  348. .pr input[radio]
  349. .ps select
  350. .oshr share button
  351. .ofav fav button with oshr
  352. .oivt invite button with oshr
  353. */

  354. /* 必填项 */ .rq { color: red; }

  355. /*
  356. Name: mod_input[text]_textarea_select
  357. Level: Global
  358. Sample: class="px/pt/ps"
  359. Explain: 单行输入框(px)、多行文本框(pt)和选择框(ps/select)
  360. Last Modify: Pony
  361. */
  362. .px, .pt, .ps, select { border: 1px solid; border-color: {INPUTBORDERDARKCOLOR} {INPUTBORDER} {INPUTBORDER} {INPUTBORDERDARKCOLOR}; background: {INPUTBG} url({IMGDIR}/px.png) repeat-x 0 0; color: {TEXT}; }
  363. .px, .pt { padding: 2px 4px; line-height: 17px; }
  364. .px { height: 17px; }
  365. .pxs { width: 30px !important; }
  366. .fdiy .tfm .px, .fdiy .tfm .pt { width: auto; }
  367. .p_fre { width: auto !important; }
  368. .er { border-color: #F66 #FFBDB9 #FFBDB9 #F66; background-color: #FDF4F4; background-image: url({IMGDIR}/px_e.png); }
  369. .pt { overflow-y: auto; }
  370. div.pt { height: 100px; line-height: 100px; }
  371. .ps, select { padding: 2px 2px 2px 1px; }
  372. /* 自动调整高度的 textarea by Pony */
  373. .pts { vertical-align: top; overflow: hidden; }
  374. .cmt .pts { width: 60%; }

  375. /*
  376. Name: mod_button
  377. Level: Global
  378. Sample: <button class="pn">Submit</button>
  379. Explain: 按钮样式
  380. Last Modify: Pony
  381. */
  382. button::-moz-focus-inner { border: 0; padding: 0; }
  383. .pn { vertical-align: middle; overflow: hidden; margin-right: 3px; padding: 0; height: 23px; border: 1px solid #999; background: #E5E5E5 url({IMGDIR}/pn.png) repeat-x 0 0; cursor: pointer; -moz-box-shadow: 0 1px 0 #E5E5E5; -webkit-box-shadow: 0 1px 0 #E5E5E5; box-shadow: 0 1px 0 #E5E5E5; }
  384. .pn:active { background-position: 0 -23px; }
  385. .ie6 .pn { overflow-x: visible; width: 0; }

  386. .pn em, .pn span, .pn strong { padding: 0 10px; line-height: 21px; }
  387. .pn em, .pn strong { font-weight: 700; }
  388. .ie7 .pn em, .ie7 .pn span, .ie7 .pn strong { padding: 0 5px; line-height: 18px; }

  389. a.pn { height: 21px; line-height: 21px; color: {TABLETEXT} !important; }
  390. a.pn:hover { text-decoration: none; }
  391. .ie6 a.pn { width: auto; }
  392. .ie6 a.pn em, .ie6 a.pn span, .ie6 a.pn strong { display: block; }
  393. .ie7 a.pn em, .ie7 a.pn span, .ie7 a.pn strong { line-height: 21px; }

  394. .pnc, a.pnc { border-color: #235994; background-color: #06C; background-position: 0 -48px; color: #FFF !important; }
  395. .pnc:active { background-position: 0 -71px; }

  396. .pnpost .pn { height: 26px; }

  397. /*
  398. Name: mod_input[radio]_input[checkbox]_label
  399. Level: Global
  400. Sample: class="pr/pc/lb"
  401. Explain: 单选按钮(pr)、多选框(pc)和<label>(lb)
  402. Last Modify: Pony
  403. */
  404. .pr, .pc { vertical-align: middle; margin: 0 5px 1px 0; padding: 0; }
  405. .ie6 .pr, .ie6 .pc, .ie7 .pr, .ie7 .pc { margin-right: 2px; }
  406. .lb { margin-right: 20px; }


  407. /*
  408. Name: mod_narrow_input
  409. Level: Global
  410. Sample: <div class="pns"></div>
  411. Explain: 小尺寸的输入框和按钮样式。该样式在模板中保留,目前样式为空。
  412. Last Modify: Pony
  413. */
  414. .pns .px {}
  415. .pns .pn {}

  416. /*
  417. Name: mod_float_typeid
  418. Level: Global
  419. Sample: <div class="ftid">
  420. <select>
  421. <option>Option</option>
  422. </select>
  423. </div>
  424. Explain: 模拟下拉菜单样式
  425. Last Modify: Pony
  426. */
  427. .ftid { float: left; margin-right: 6px; }
  428. .ftid select { float: left; height: 23px; }
  429. .ftid a { display: block; overflow: hidden; padding: 0 17px 0 4px; height: 21px; line-height: 21px; text-decoration: none !important; font-size: 12px; font-weight: 400; color: {TABLETEXT} !important; border: 1px solid; border-color: {INPUTBORDERDARKCOLOR} {INPUTBORDER} {INPUTBORDER} {INPUTBORDERDARKCOLOR}; background: {WRAPBG} url({IMGDIR}/newarow.gif) no-repeat 100% 0; }
  430. .ftid a:hover, .ftid a:focus { background-position: 100% -23px; }
  431. /* ctrl 'select' width */
  432. .ftid select { width: 94px; }
  433. .sslt a { width: 54px; }
  434. .sslt select { width: 60px; }

  435. .sltm { padding: 5px 11px 5px 10px; border: 1px solid {DROPMENUBORDER}; background-color: {WRAPBG}; text-align: left; }
  436. .sltm li { padding: 2px 0; color: {MIDTEXT}; cursor: pointer; }
  437. .sltm li:hover { color: {HIGHLIGHTLINK}; }
  438. .sltm li.current { color: {NOTICETEXT}; }

  439. /* 分享按钮 */ .oshr { float: right; margin-left: 5px; padding: 0 5px 0 22px; border: 1px solid; border-color: #CCC #A9A9A9 #A9A9A9 #CCC; background: {WRAPBG} url({IMGDIR}/oshr.png) no-repeat 5px 50%; }
  440. .oshr:hover { text-decoration: none; }
  441. /* 收藏按钮 with oshr */ .ofav { background-image: url({IMGDIR}/fav.gif); }
  442. /* 邀请按钮 with oshr */ .oivt { background-image: url({IMGDIR}/activitysmall.gif); }


  443. /*
  444. Name: mod_form
  445. Level: Global
  446. Sample: <form>
  447. <table cellspacing="0" cellpadding="0" class="tfm">
  448. <tr>
  449. <th>Label</th>
  450. <td><input type="text" name="" id="" class="" /></td>
  451. </tr>
  452. </table>
  453. </form>
  454. Explain: 表单样式
  455. Last Modify: Pony
  456. */
  457. .tfm { width: 100%; }
  458. .tfm caption, .tfm th, .tfm td { vertical-align: top; padding: 7px 0; }
  459. .tfm caption h2 { font-size: 16px; }
  460. .vt th, .vt td { vertical-align: top; }
  461. .tfm th { padding-top: 9px; padding-right: 5px; width: 130px; }
  462. .tfm th .rq { float: right; font-size: 14px; }
  463. .tfm .pt, .tfm .px { margin-right: 3px; width: 330px; }
  464. .tfm .c, .tfm .tedt, .m_c .tfm .tedt { width: 338px; }
  465. .tfm .d { clear: both; margin: 5px 0; color: {LIGHTTEXT}; }
  466. .tfm .d em { margin-left: 5px; color: red; }
  467. .tfm .d strong { margin-left: 5px; }
  468. .tfm .d a { color: {HIGHLIGHTLINK}; }
  469. .tfm .p { text-align: right; }
  470. .tfm .pcl label { display: block; padding: 0 2px 5px; }
  471. .tfm .pcl .pc { margin-right: 5px; padding: 0; }
  472. .tfm .l th, .tfm .l td { padding-top: 0; padding-bottom: 0; }
  473. .bn .tfm caption, .bn .tfm th, .bn .tfm td { padding-top: 5px; padding-bottom: 5px; }

  474. /*
  475. Name: mod_postboxtitle
  476. Level: Function
  477. Explain: 发帖页面、弹窗等的标题栏
  478. Last Modify: Pony
  479. */
  480. .pbt { margin-bottom: 10px; }
  481. .ie6 .pbt .ftid a, .ie7 .pbt .ftid a { margin-top: 1px; }
  482. #custominfo.mtn { margin-bottom: -5px; }

  483. /* 提示信息 alert_win - altw*/
  484. .altw { width: 350px; }
  485. .altw .fltc { margin-bottom: 0; padding: 8px; }
  486. .alert_right, .alert_error, .alert_info { padding: 6px 0 6px 58px; min-height: 40px; height: auto !important; height: 40px; line-height: 160%; background:url({IMGDIR}/right.gif) no-repeat 8px 8px; font-size: 14px; }
  487. .alert_error { background-image: url({IMGDIR}/error.gif); }
  488. .alert_error a { font-weight: 700; color: {HIGHLIGHTLINK}; }
  489. .alert_info { background-image: url({IMGDIR}/info.gif); }
  490. .alert_btnleft { margin-top: 8px; }
  491. .alert_btn { margin-top: 20px; text-align: center; }
  492. .alert_act { margin-top: 20px; padding-left: 58px; }

  493. /* 发帖导航 by lushnis */
  494. .pbnv { float: left; white-space: nowrap; overflow: hidden; width: 400px; padding: 7px 0; }
  495. .pbl { overflow: hidden; margin: 9px 0; width: 621px; border-width: 1px 0 1px 1px; border-style: solid; border-color: #CCC; background: {WRAPBG}; }
  496. .pbl li { float: left; overflow-x: hidden; overflow-y: auto; padding: 5px; width: 196px; height: 300px; border-right: 1px solid #CCC; }
  497. .pbl p { height: 25px; line-height: 25px; }
  498. .pbl a { display: block; white-space: nowrap; overflow: hidden; padding: 0 4px; text-decoration: none; color: {HIGHLIGHTLINK}; border: solid {WRAPBG}; border-width: 1px 0; }
  499. .pbl a:hover { text-decoration: none; background-color: #F3F3F3; }
  500. .pbl .highlightlink { color: #08C; }
  501. .pbls a, .pbls a:hover { background-color: #EEE; color: {MIDTEXT}; font-weight: 700; }
  502. .pbsb { background: url({IMGDIR}/arrow.gif) right -33px no-repeat; }

  503. /* ------------------------------------------------------------------------ 页面布局 */
  504. /*
  505. #hd Header
  506. #nv Navigation
  507. #mu Customer menu
  508. .wp Wrap
  509. #ct Container
  510. .mn Main area
  511. .sd Side area
  512. #ft Footer
  513. ----------------
  514. .bm Block in main area
  515. .bn Block in nerrow area
  516. .bw Block in full width

  517. #pp Personal Panel
  518. .pm Personal Message (Window)
  519. .pmfl PM friend list (Window)
  520. */

  521. /* 通用容器,定义页面宽度 */ .wp { margin: 0 auto; width: 1080px; } #wp .wp { width: auto; }
  522. .innerxiao{ background:{BGCOLOR};margin-bottom:10px;margin-top:-10px; }


  523. /* 页头 */
  524. #toptb { line-height: 24px; }
  525. #toptb a { float: left; padding: 0 4px; height: 24px; }
  526. #toptb a.showmenu { padding-right: 15px; }
  527. #toptb a.hover { background-color: #FFF; }
  528. #toptb .pipe { float: left; display: none; }
  529. #hd { border-bottom: {HEADERBORDER} solid {SPECIALBORDER}; {HEADERBGCODE} }
  530. #hd .wp { padding: 10px 0 0; }
  531. #diy-tg { float: right; width: 55px; background: url({STATICURL}image/diy/panel-toggle.png) no-repeat 100% 1px; text-indent: -9999px; overflow: hidden; }
  532. #diy-tg_menu { position: absolute; margin: -2px 0 0 -1px; padding: 6px 0; width: 72px; height: 48px; background: url({STATICURL}image/diy/panel-toggle-drop.png) no-repeat 0 0; text-align: center; }
  533. #diy-tg_menu a { float: none !important; }
  534. #toptb #diy-tg_menu { margin: -6px 0 0 -10px; }

  535. .hdc { min-height: 70px; }
  536. .ie6 .hdc { height: 70px; }
  537. #hd h2 { padding: 0 20px 8px 0; float: left; }
  538. #space #hd h2 { margin-top: 0; }
  539. #hd .fastlg { padding-top: 10px; }

  540. #scbar { height: 44px; border: solid {SPECIALBG}; border-width: 0 1px 1px; background: url({IMGDIR}/search.png) repeat-x 0 0; line-height: 44px; overflow: hidden; }
  541. .scbar_icon_td { width: 50px; background: url({IMGDIR}/search.png) no-repeat 0 -74px; }
  542. .scbar_txt_td, .scbar_type_td { background: url({IMGDIR}/search.png) repeat-x 0 -222px; }
  543. #scbar_txt { width: 400px; border: 1px solid #FFF; outline: none; font-size: 14px; }
  544. .scbar_narrow #scbar_txt { width: 260px; }
  545. .scbar_btn_td { width: 67px; background: url({IMGDIR}/search.png) no-repeat 0 -296px; text-align: center; }
  546. #scbar_btn { margin: 0; padding: 0; border: none; background: transparent none; }
  547. .scbar_type_td { background: url({IMGDIR}/search.png) no-repeat 0 -370px; }
  548. #scbar_type { display: block; padding-left: 5px; text-align: left; text-decoration: none; }
  549. #scbar_type_menu { margin-top: -8px; }
  550. #scbar_hot { padding-left: 8px; height: 45px; overflow: hidden; }
  551. #scbar_hot strong, #scbar_hot a { float: left; margin-right: 8px; white-space: nowrap; }

  552. #nv { overflow: hidden; padding-left: 3px; height: 33px; {MENUBGCODE}; }
  553. #nv li { float: left; padding-right: 1px; height: 33px; line-height: 33px; background: url({IMGDIR}/nv_a.png) no-repeat 100% 0; font-weight: 700; font-size: 14px; }
  554. .ie_all #nv li { line-height: 36px; }
  555. .ie6 #nv li { line-height: 33px; }
  556. #nv li a { float: left; padding: 0 15px; height: 33px; }
  557. #nv li a { color: {MENUTEXT}; }
  558. #nv li span { display: none; }
  559. #nv li.a { margin-left: -1px; {MENUHOVERBGCODE}; }
  560. #nv li.a a { color: {MENUHOVERTEXT}; }
  561. #nv li a:hover { background: url({IMGDIR}/nv_a.png) no-repeat 50% -66px; }
  562. #nv li.hover a:hover, #nv li.hover a { background: url({IMGDIR}/nv_a.png) no-repeat 50% -99px; }
  563. #mu { position: relative; z-index: 1; }
  564. .ie6 #mu, .ie7 #mu { line-height: 0; font-size: 0; }
  565. #mu ul { background: url({IMGDIR}/mu_bg.png) no-repeat 0 100%; line-height: 22px; z-index: 2; font-size: 12px; }
  566. #mu li { float: left; height: 32px }
  567. #mu a { float: left; display: inline; margin: 5px 6px; padding: 0 10px; white-space: nowrap; }
  568. #mu a:hover { margin: 4px 5px; border: 1px solid {SPECIALBORDER}; background: {SPECIALBG}; color: {HIGHLIGHTLINK}; text-decoration: none; }
  569. .floatmu { position: absolute; left: 0; top: 0; }
  570. #um { padding-top: 10px; padding-right: 60px; _padding-right: 54px; line-height: 2.3; zoom: 1; }
  571. #um, #um a { color: {HEADERTEXT}; }
  572. #um p { text-align: right; }
  573. #um .avt { display: inline; margin-right: -60px; }
  574. .vwmy { padding-left: 16px; background: url({IMGDIR}/user_online.gif) no-repeat 0 2px; }
  575. .vwmy.qq { background: url({IMGDIR}/connect_qq.gif) no-repeat scroll 0 0; padding-left: 20px; }
  576. /* .topnav .new, .sch .new 分别为为个人中心和搜索页面头部新消息样式 */
  577. #um .new, .topnav .new, .sch .new, #toptb .new { padding-left: 20px; background-repeat: no-repeat; background-position: 0 50%; color: {HIGHLIGHTLINK}; font-weight: 700; }
  578. #myprompt.new { background-image: url({IMGDIR}/notice.gif); background-position: 3px 50%; }
  579. #pm_ntc.new { background-image: url({IMGDIR}/new_pm.gif); }
  580. #task_ntc { background-image: url({STATICURL}image/feed/task.gif); }
  581. #um .pipe { margin: 0 5px 0 0; }

  582. #extcreditmenu { margin-right: 2px !important; padding-top: 3px; padding-bottom: 3px; padding-left: 10px; }
  583. #extcreditmenu.a { position: relative; z-index: 302; margin-right: 1px !important; border: 1px solid; border-color: {DROPMENUBORDER}; border-bottom: none; background-color: {WRAPBG}; }
  584. #extcreditmenu_menu { margin-top: -1px; width: auto; }
  585. #extcreditmenu_menu li { float: none; display: block; padding-left: 10px !important; padding-right: 3em !important; }

  586. #qmenu { float: right; display: inline; margin: 3px 4px 0; padding: 0 12px 0 0; width: 83px; height: 26px; background: url({IMGDIR}/qmenu.png) no-repeat 0 0; line-height: 26px; text-align: center; color: {HIGHLIGHTLINK}; font-weight: 700; text-shadow: 0 1px 0 #FFF; overflow: hidden; }
  587. #qmenu:hover { text-decoration: none; }
  588. #qmenu.a { position: relative; z-index: 302; background-position: 0 -30px; }
  589. .ie8 #qmenu { line-height: 30px; }
  590. #qmenu_menu { margin-top: -1px; padding: 20px 5px 10px; width: 180px; border-color: #9A9A9A; }
  591. #qmenu_menu ul li { float: left; }
  592. #qmenu_menu ul a { margin-bottom: 10px; padding: 47px 0 0; width: 60px; border: none; border-radius: 4px; background: url({IMGDIR}/noicon.gif) no-repeat 50% 5px; text-align: center; }
  593. #qmenu_menu ul a:hover { background-color: {SPECIALBG}; color: {HIGHLIGHTLINK}; text-shadow: none; }

  594. /* 页面主区域 */
  595. #ct { min-height: 300px; }
  596. .ie6 #ct { height: 300px; }
  597. .mn { overflow: hidden; }
  598. .ct1 { border: 1px solid {WRAPBORDERCOLOR}; border-top: none; }
  599. .ct2 .mn { float: left; width: 730px; margin-bottom: 1em; }
  600. .ct2 .sd { float: right; width: 220px; overflow: hidden; _overflow-y: visible; }

  601. .appl { float: left; overflow: hidden; margin-bottom: 10px; padding: 6px 10px; width: 100px; }

  602. .ct2_a, .ct3_a { border: 1px solid {WRAPBORDERCOLOR}; {SIDEBGCODE} }
  603. .ct2_a_r { border: none; background-image: none; }
  604. .ct2_a h1.mt { display: none; }
  605. .ct2_a .tb { margin-top: 3px; }
  606. .ct2_a .mn { float: right; width: 810px; }
  607. .ct2_a .mn { display: inline; margin-right: 10px; padding-top: 10px; width: 700px; }
  608. #nv_userapp .ct2_a .mn, .ct2_a_r .mn { margin-right: 0; width: 740px; }

  609. .ct3_a .mn { float: left; margin-left: 20px; width: 565px; }
  610. .ct3_a .sd { float: right; width: 220px; }
  611. #nv_home .ct3_a .sd .bm { margin-right: 10px; border: none; }
  612. #nv_home .ct3_a .sd .bm_c { padding: 10px 0; }

  613. .mw { width: 100%; float: none; }
  614. .mnw { clear: both; border-top: 1px solid #CCC; }
  615. .mnh { width: 643px; background: {COMMONBG}; margin-bottom: 0; }

  616. /* 页尾 */
  617. #ft { padding: 10px 0 150px; line-height: 1.8; color: {FOOTERTEXT}; }
  618. #flk { text-align: right; }
  619. #flk img { vertical-align: middle; }
  620. #scrolltop { visibility: hidden; position: fixed; bottom: 100px; display: block; margin: -30px 0 0; width: 26px; height: 50px; background: url({IMGDIR}/scrolltop.png) no-repeat 50% 0; line-height: 999px; overflow: hidden; cursor: pointer; }
  621. .ie6 #scrolltop { position: absolute; bottom: auto; }
  622. #nv_home #ft, .pg_announcement #ft, .pg_modcp #ft, .pg_portalcp #ft, .pg_ranklist #ft, #nv_userapp #ft { border-top: none; }

  623. /* 通用的区域块 */
  624. /*
  625. .bm 是最常用的区块元素,默认带有 1px 的边框和 10px 的下边距。一般情况下,.bm 内应包括两个子容器:.bm_h 和 .bm_c,前者代表区块头部,带有灰色背景和下边框;后者是容器主体,默认带有 10px 的内边距。
  626. .bm 另有三种子样式
  627. .bmw Weight 头部为彩色背景
  628. .bml Lite 头部无背景填充
  629. .bmn Notice 整体带有彩色背景,常用于提示信息
  630. */
  631. .bm, .bn { margin-bottom: 10px; }
  632. .bm { border: 1px solid {COMMONBORDER}; background: {WRAPBG}; }
  633. .bm_c { padding: 10px; }
  634. .drag {}
  635. .bm_h .o { float: right; width: 30px; }
  636. .bm_h .o img { float: right; margin-top: 11px; cursor: pointer; }
  637. .bm_h .i { padding-left: 10px; }
  638. .bm_h .pn { margin-top: 4px; }
  639. .bm_h { padding: 0 10px; height: 31px; border-top: 1px solid #FFF; border-bottom: 1px solid {CONTENTSEPARATE}; background: {COMMONBG}; line-height: 31px; white-space: nowrap; overflow: hidden; }
  640. .bmw { border: 1px solid {COMMONBORDER}; }
  641. .bmw .bm_h { border-top-color: {WRAPBG}; border-right: 1px solid {WRAPBG}; border-bottom-color: {CONTENTSEPARATE}; border-left: 1px solid {WRAPBG}; background: {SPECIALBG}; }
  642. .bmw .bm_h a { color: {HIGHLIGHTLINK}; }
  643. .bml .bm_h { padding-top: 5px; border: none; background: transparent; }
  644. .bml .bm_c { padding-top: 0; }
  645. .bmn { padding: 7px 10px; border-color: {SPECIALBORDER}; background: {SPECIALBG}; }

  646. .fl { border: 1px solid {COMMONBORDER}; border-top: none; background: {WRAPBG}; }
  647. .fl .bm { margin-bottom: 0; border: none; }
  648. .fl .bm_h { border-width: 1px 0; border-color: {SPECIALBORDER}; {TITLEBGCODE}; }
  649. .fl .bm_c, #online .bm_c, .lk .bm_c { padding-top: 0; padding-bottom: 0; }
  650. .bm2 .bm2_b { float: left; width: 49%; border: 1px solid {COMMONBORDER}; }
  651. .bm2 .bm2_b_y { float: right; }
  652. .bw0 { background: transparent; }

  653. /* 宽布局下的通用块 */.bw { padding: 0 15px; }

  654. /*
  655. Name: mod_path
  656. Level: Global
  657. Sample: <div id="pt"><div class="z">Path here</div></div>
  658. Explain: 面包屑导航
  659. Last Modify: lushnis
  660. */
  661. #pt { margin: 2px 0; height: 29px; border:none; background: transparent; line-height: 29px; }
  662. #pt .z { padding-right: 10px; }
  663. #pt .z a, #pt .z em, #pt .z span { float: left; height: 29px; }
  664. #pt .z em { width: 20px; background: url({IMGDIR}/pt_item.png) no-repeat 3px 10px; line-height: 200px; overflow: hidden; }
  665. .nvhm { width: 16px; background: url({STYLEIMGDIR}/icon_nav.gif) no-repeat 2px 9px; line-height: 200px; overflow: hidden; }
  666. /* XP 或 Windows 7,IE 最高版本为 8 或 9,这几种组合情况对字体的渲染存在差异,所以需要对背景进行微调,以适应更多情况 by Pony 11050511 */
  667. .ie_all #pt .z em { background-position: 3px 9px; }
  668. .ie_all .nvhm { background-position: -8px -120px; }
  669. /*
  670. Name: mod_userheader
  671. Level: Global
  672. Sample: div id="uhd"
  673. Explain: 论坛皮肤下用户页面头部
  674. Last Modify: lushnis
  675. */
  676. #uhd { padding-top: 10px;border: 1px solid #CCC; border-bottom: none; background: {SPECIALBG}; }
  677. #uhd .tb a { border-width: 1px 0; border-top-color: {SPECIALBG}; border-bottom-color: {WRAPBORDERCOLOR}; }
  678. #uhd .tb .a a { border: 1px solid #CCC; border-bottom-color: #FFF; }
  679. .ie6 #uhd .tb .a { position: relative; }
  680. #uhd .mn { float: right; margin-right: 15px; margin-bottom: -30px; line-height: 28px; }
  681. #uhd .mn a { padding: 2px 0 2px 20px; background: no-repeat 0 50%; color: {MIDTEXT}; }
  682. #uhd .mn a:hover { color: {HIGHLIGHTLINK}; }
  683. #uhd .mn .addflw a { background-image: url({IMGDIR}/flw_ico.png); }
  684. #uhd .mn .addf a { background-image: url({STATICURL}image/feed/friend.gif); }
  685. #uhd .mn .pm2 a { background-image: url({IMGDIR}/pmto.gif); }
  686. #uhd .h { padding-left: 75px; }
  687. #uhd .avt { display: inline; float: left; margin-left: -65px; }
  688. #uhd .mt { padding-bottom: 0; }
  689. #uhd .flw_hd { float: right; width: 260px; margin-right: 10px; margin-bottom: -30px; }
  690. #uhd .tns th, #uhd .tns td { padding-left: 20px; text-align: left; }
  691. #uhd .flw_hd .o { padding-left: 20px; }
  692. /* 统计数据 */
  693. .tns { padding: 10px 0; }
  694. .tns table { width: 100%; }
  695. .tns th, .tns td { text-align: center; font-size: 12px; }
  696. .sd .tns th, .sd .tns td { width: 110px !important; }
  697. .tns th { border-right: 1px solid #CCC; }
  698. .tns th p, .tns td p { font-size: 14px; margin: 0; }
  699. .pls .tns { padding: 0 10px 10px; }
  700. .pls .tns th p, .pls .tns td p { font-size: 12px; margin: 0; }

  701. /* 带图标页面头部 ih. --> icon header */
  702. .ih .icn { float: left; width: 60px; }
  703. .ih dl { margin-left: 60px; }
  704. .ih dt { font-size: 14px; font-weight: 700; }
  705. .ih dd { padding-bottom: 1em; }
  706. .ih dd strong { margin: 0 2em 0 4px; color: #C00; }

  707. /*
  708. Name: mod_tab
  709. Level: Global
  710. Dependent: mod_clearfix
  711. Sample: <ul class="tb cl">
  712. <li class="a"><a href="#">Active Tab Item</a></li>
  713. <li><a href="#">Tab Item</a></li>
  714. </ul>
  715. Explain: 标签样式
  716. Last Modify: lushnis
  717. */
  718. .tb { margin-top: 10px; padding-left: 5px; line-height: 30px; border-bottom: 1px solid {COMMONBORDER}; }
  719. .tb li { float: left; margin: 0 3px -1px 0; }
  720. .ie6 .tb .a, .ie6 .tb .current { position: relative; }
  721. .tb a { display: block; padding: 0 10px; border: 1px solid {COMMONBORDER}; background: {SPECIALBG}; }
  722. .tb .a a, .tb .current a { border-bottom-color: {WRAPBG}; background: {WRAPBG}; font-weight: 700;}
  723. .tb a:hover { text-decoration: none; }
  724. .tb .y { float: right; margin-right: 0; }
  725. .tb .y a { border: none; background: transparent; }
  726. .tb .o { margin: 1px 4px 0 2px; border: 1px solid #235994; }
  727. .tb .o, .tb .o a { height: 23px; line-height: 23px; background: #06C url({IMGDIR}/pn.png) repeat-x 0 -48px; }
  728. .tb .o a { padding: 0 15px; border: none; font-weight: 700; color: #FFF; }
  729. .ie6 .tb .o a { float: left; }
  730. .tb_h { margin: 0; padding: 0; background-color: {SPECIALBG}; }
  731. .tb_h li { margin-right: 0; }
  732. .tb_h a { border-top: none; border-left: none; }
  733. .tb_h .o { margin-top: 2px; }
  734. .tb_s { margin-top: 0; line-height: 26px; }

  735. /* 类似menu的Tab */
  736. .tbmu { padding: 8px 10px 8px 0; border-bottom: 1px dashed {COMMONBORDER}; }
  737. .tbmu a { color: {HIGHLIGHTLINK}; }
  738. .tbmu .a { color: {LINK}; font-weight: 700; }
  739. /* tab的强调信息提示 */
  740. .tbms { padding: 10px 10px 10px 26px; border: 1px dashed #FF9A9A; background: url({IMGDIR}/notice.gif) no-repeat 10px 50%; }
  741. .tbms_r { background-image: url({IMGDIR}/data_valid.gif); }
  742. /* 极简 Tab */
  743. .tbx { margin: 10px 0; }
  744. .tbx span { margin-right: 10px; cursor: pointer; }
  745. .tbx .a { padding: 3px 5px; border: solid #999; border-width: 0 1px 1px 0; background: {COMMONBG} url({IMGDIR}/thead.png) repeat-x 0 -20px; }
  746. .tbx strong { color: {NOTICETEXT}; }
  747. /* 类似相册侧边切换页面用的 */
  748. .obn { border-bottom: 1px solid {COMMONBORDER}; }
  749. .obn select { width: 100%; margin-bottom: 5px; }

  750. /* 广告 */
  751. /* 页头广告 */ .a_h { padding-top: 5px; }
  752. /* 二级导航广告 */ .a_mu { border: solid {COMMONBORDER}; border-width: 0 1px 1px; background: {COMMONBG}; }
  753. /* 页尾广告 */ .a_f { margin: 5px auto; }
  754. /* 日志内容广告 */ .a_b { float: right; margin: 0 0 5px 5px; }
  755. /* 格子广告 */ .a_t { margin-bottom: 10px; }
  756. .a_t table { width: 100%; }
  757. .a_t td { padding: 4px 15px; border: 1px solid {COMMONBORDER}; }
  758. /* 帖内广告 */ .a_pr { float: right; overflow: hidden; }
  759. .a_pt, .a_pb { background: url({IMGDIR}/ad.gif) no-repeat 0 50%; margin-bottom: 6px; padding-left: 20px; zoom: 1; }
  760. /* 漂浮广告 */ .a_fl, .a_fr { float: right; position: fixed; top: 350px; z-index: 100; }
  761. .a_fl { left: 0; }
  762. .a_fr { right: 0; text-align: right; }
  763. * html .a_fl, * html .a_fr { position: absolute; top: expression(offsetParent.scrollTop+350); }
  764. /* 对联广告 */ .a_cb { top: 20px }
  765. * html .a_cb { top: expression(offsetParent.scrollTop+20); }
  766. /* 文章漂浮广告 */ .a_af { float:left; margin-right: 10px; margin-bottom: 10px; }
  767. /* 右下角广告 */ .a_cn { position: fixed; right: 10px; bottom: 10px; z-index: 300; }
  768. * html .a_cn { position: absolute; top: expression(offsetParent.scrollTop+document.documentElement.clientHeight-this.offsetHeight); }
  769. .a_cn .close { text-align: right; }

  770. .a_h, .a_mu, .a_c, .a_p, .a_f, .a_t { text-align: center; }

  771. /* ------------------------------------------------------------------------ 列表样式 */
  772. /*
  773. .xl Text list
  774. .xl1 1 line list ( wrap text will be hidden );
  775. .xl2 2 col list
  776. .xld list with description ( the HTML tag must be <dl> )
  777. .ml Media/Image list
  778. .mls Media size: 48*48px
  779. .fl Forum list
  780. .tl Thread list
  781. .al Application list
  782. */

  783. /* 文本列表 */
  784. .xl li { margin: 2px 0; }
  785. .xl em { float: right; padding-left: 5px; }
  786. .xl em, .xl em a { color: {LIGHTTEXT}; }
  787. .xl label, .xl label a { color: #C00; }
  788. .xl1 li { height: 1.5em; overflow: hidden; }
  789. .xl1_elp { float: left; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  790. .xl2 li { float: left; margin: 2px 0; padding: 0; width: 48.6%; height: 1.5em; overflow: hidden; }
  791. .xl ol, ol.xl { background: url({IMGDIR}/sortnum.png) no-repeat 0 3px; line-height: 21px; }
  792. .xl ol li, ol.xl li { background: none; padding-left: 20px; }
  793. .xl ol li, ol.xl li { height: 21px; }
  794. .xld dt { padding: 8px 0 5px; font-weight: 700; }
  795. .xld dd { margin-bottom: 8px; }
  796. /* text with thumbnail image ( must with the additional class .cl ) */
  797. .xld .m { float: left; margin: 8px 8px 10px 0; }
  798. .xld .atc { float: right; margin-left: 20px; }
  799. .ie8 .xld .atc { max-width: 86px; }
  800. .xld .atc img { padding: 2px; max-width: 80px; max-height: 80px; border: 1px solid #CCC; background: {WRAPBG}; }
  801. .ie6 .xld .atc img { width: expression(this.width > 80 && this.width>=this.height ? 80 : true); height: expression(this.height > 80 && this.width<=this.height ? 80 : true); }
  802. .xld a.d, .xl a.d, .attc a.d, .c a.d, .sinf a.d { float: right; width: 20px; height: 20px; overflow: hidden; line-height: 100px; background: url({IMGDIR}/op.png) no-repeat 0 -2px; }
  803. .attc a.d { float: left; }
  804. .xld a.d:hover, .xl a.d:hover, .attc a.d:hover, .c a.d:hover, .sinf a.d:hover { background-position: 0 -22px; }
  805. .xld a.b { background-position: 0 -40px; }
  806. .xld a.b:hover { background-position: 0 -60px; }
  807. .xlda dl { padding-left: 65px; }
  808. .xlda .m { display: inline; margin: 8px 0 8px -65px; }
  809. .xlda .avt img { display: block; }
  810. .xlda dd img { max-width: 550px; }
  811. * html .xlda dd img { width: expression(this.width > 550 ? 550 : true); }
  812. .xlda dd a { color: {HIGHLIGHTLINK}; }
  813. .xlda dd .hot { color: {NOTICETEXT}; }

  814. /* 图片列表 */
  815. .ml {}
  816. .ml li { float: left; padding: 0 5px 5px; text-align: center; overflow: hidden; }
  817. .ml img { display: block; margin: 0 auto; }
  818. .ml p, .ml span { display: block; width: 100%; height: 20px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
  819. .ml span, .ml span a { color: {LIGHTTEXT}; }
  820. .mls li { padding: 0 0 5px; width: 66px; }
  821. .mls .avt { display: block; margin: 0 auto; width: 54px; }
  822. .mls img { width: 48px; height: 48px; }
  823. .mls p { margin-top: 5px; }
  824. .mlm li { padding: 0 0 5px; width: 150px; }
  825. .mlm img { width: 120px; height: 120px; }
  826. .mla li { width: 140px; height: 224px; }
  827. .mla1 li { height: 150px; }
  828. .mla .c { margin: 0 auto; width: 136px; height: 150px; background: url({IMGDIR}/gb.gif) no-repeat 0 0; text-align: left; }
  829. .mla .a { background-position: 0 100%; }
  830. .mla .c a { display: block; padding: 14px 4px 3px 8px; width: 120px; height: 120px; overflow: hidden; }
  831. .mla img { max-width: 120px; max-height: 120px; _width: expression(this.width > 120 && this.width>=this.height ? 120 : true); _height: expression(this.height > 120 && this.width<=this.height ? 120 : true); }
  832. .mlp li { width: 140px; height: 140px; }
  833. .mlp .d { padding: 0 0 5px; width: 150px; height: 180px; }
  834. .mlp img { padding: 2px; max-width: 120px; max-height: 120px; border: 1px solid #CCC; background: {WRAPBG}; }
  835. * html .mlp img { width: expression(this.width > 120 && this.width>=this.height ? 120 : true); height: expression(this.height > 120 && this.width<=this.height ? 120 : true); }

  836. /* 用户头像列表时,各种状态图标。.gm -> 管理员; .gs -> 明星会员 ; .gol -> 在线会员; */
  837. .gm, .gs, .gol { position: absolute; overflow: hidden; margin: -3px 0 0 -3px; width: 60px; height: 18px; background: url({IMGDIR}/gst.gif) no-repeat 0 0; display: block;/* ie6 */ }
  838. .gs { background-position: 0 -18px; }
  839. .gol { background-position: 0 -36px; }

  840. /* 应用列表*/
  841. .appl ul { margin: 3px 0; }
  842. .appl li { display: block; height: 28px; line-height: 28px; white-space: nowrap; word-wrap: normal; font-size: 14px; text-overflow: ellipsis; overflow: hidden; }
  843. .appl li a { text-decoration: none !important; }
  844. .appl img { margin: 5px 5px -3px 0; }
  845. .appl span { float: right; font-size: 12px; }
  846. .appl span a { color: {LIGHTTEXT}; }
  847. .appl span a:hover { color: {HIGHLIGHTLINK}; }
  848. /* 应用侧边 by Pony */
  849. .myo li { height: auto; line-height: 1.5; }
  850. .myo img { margin-bottom: -1px; }
  851. .myo a { color: {HIGHLIGHTLINK}; }
  852. /* 侧边管理列表 */
  853. .tbn { margin: -6px -10px 0; }
  854. .tbn ul { margin: 0; }
  855. .tbn li { margin: 0 10px; height: 33px; border-bottom: 1px dashed #CCC; }
  856. .tbn li.a { margin: -1px 0 0; padding: 0 10px 0 9px; border-top: 1px solid {COMMONBORDER}; border-bottom-style: solid; background: {WRAPBG}; }
  857. .tbn ul a { display: block; height: 33px; line-height: 33px; }
  858. .tbn .mt { padding: 10px; }

  859. /* 道具 magic */
  860. .mg_img { padding: 10px; width: 76px; height: 76px; background: url({IMGDIR}/magic_imgbg.gif) no-repeat 0 0; }

  861. /*
  862. Name: mod_link
  863. Level: Global
  864. Dependent:
  865. Sample: <ul class="tb cl">
  866. <li class="a"><a href="#">Active Tab Item</a></li>
  867. <li><a href="#">Tab Item</a></li>
  868. </ul>
  869. Explain: 友情链接
  870. Last Modify: lushnis
  871. */
  872. .lk img { float: left; margin-right: 5px; margin-bottom: 5px; width: 88px; height: 31px; }
  873. .lk p { color: {MIDTEXT}; }
  874. .lk .m li { clear: left; padding: 0 0 10px 98px; }
  875. .lk .m img { display: inline; margin-top: 4px; margin-top/*\**/: 1px\9; margin-left: -98px; }
  876. .lk .x li { float: left; margin-right: 5px; width: 88px; height: 1.5em; overflow: hidden; }
  877. .lk_logo .lk_content { float: left; }

  878. /* ------------------------------------------------------------------------ 其他特定功能块 */
  879. /* 简易编辑器 Tiny Editor */
  880. .tedt { width: 98%; border: 1px solid; border-color: #999 #CCC #CCC #999; }
  881. .tedt .bar { padding: 0 10px 0 0; height: 25px; line-height: 25px; border-bottom: 1px solid {COMMONBORDER}; background: {COMMONBG}; }
  882. .fpd a { float: left; margin: 2px 5px 0 0; width: 20px; height: 20px; background: url({STATICURL}image/editor/editor.gif) no-repeat; text-indent: -9999px; line-height: 20px; overflow: hidden; }
  883. .fpd a.fbld { background-position: 0 0; }
  884. .fpd a.fclr { background-position: -60px 0; }
  885. .fpd a.fmg { background-position: 0 -20px; }
  886. .fpd a.flnk { background-position: -40px -20px; }
  887. .fpd a.fqt { background-position: -140px -20px; }
  888. .fpd a.fcd { background-position: -120px -20px; }
  889. .fpd a.fsml { background-position: -20px -20px; }
  890. .fpd a.fat { background-position: -140px 0; }
  891. .tedt .area { padding: 4px; background: {WRAPBG}; zoom: 1; }
  892. .tedt .pt { width: 100%; margin-right: 0; padding: 0 !important; border: none; background: {WRAPBG} none; }
  893. .tedt .pt:focus { outline: none; -moz-box-shadow: none; }
  894. .m_c .tedt { width: 600px; }

  895. /* 表情 */
  896. .sllt { padding: 10px 5px 5px !important; }
  897. .sllt td { padding: 8px; border: none; cursor: pointer; }
  898. .sllt_p { *float: left; text-align: right; }
  899. .sllt_p a { margin-right: 5px; color: #069; text-decoration: underline; }
  900. .sl_pv { margin-top: 5px; padding: 8px; background: #FAFAFA; border: 1px solid #CCC; }
  901. .ie6 .slg, .ie7 .slg { width: expression(this.parentNode.offsetWidth); }

  902. /*
  903. Name: mod_style_selector
  904. Level: Fuction
  905. Dependent: mod_popupmenu
  906. Explain: 风格切换菜单
  907. Last Modify: lushnis
  908. */
  909. #toptb a#sslct { width: 10px; background: url({IMGDIR}/style_switch.png) no-repeat 50% 50%; text-indent: -9999px; overflow: hidden; }
  910. #sslct_menu { padding: 6px 10px 10px; }
  911. .sslct_btn { float: left; margin: 4px 4px 0 0; width: 12px; height: 12px; border: 1px solid {COMMONBORDER}; cursor: pointer; }
  912. .sslct_btn i { float: left; display: inline; margin: 1px; width: 10px; height: 10px; background: #2E80D1; overflow: hidden; font-style: normal; }

  913. /* 弹出菜单、弹出层及弹出窗口 */
  914. .p_pop, .p_pof, .sllt { padding: 4px; border: 1px solid; min-width: 60px; border-color: {DROPMENUBORDER}; {DROPMENUBGCODE}; box-shadow: 1px 2px 2px rgba(0,0,0,0.3); }
  915. .ie6 .p_pop { width: 100px; }
  916. .p_pof .p_pop { padding: 0; border: none; box-shadow: none; }
  917. .p_pof { width: 500px; }
  918. .p_opt { padding: 10px; }
  919. .p_pop li { display: inline; }
  920. .p_pop a { display: block; padding: 3px 5px; border-bottom: 1px solid {SPECIALBG}; white-space: nowrap; }
  921. .p_pop li:last-child a { border: none; }
  922. .ie6 .p_pop a { position: relative; }
  923. .p_pop a:hover, .p_pop a.a, #sctype_menu .sca { background-color: {SPECIALBG}; color: {HIGHLIGHTLINK}; text-decoration: none; }
  924. /* .blk -> block 内容较为复杂的弹出层使用 .blk 的 class,内部的 a 标签重新定义 */
  925. .blk a, .inlinelist a { display: inline; padding: 0; border: none; }
  926. .blk a:hover { background: none; color: {LINK}; text-shadow: none; text-decoration: underline; }
  927. .inlinelist { padding: 5px; }
  928. .inlinelist a { float: left; width: 5em; height: 2em; overflow: hidden; text-align: center; line-height: 2em; }
  929. .h_pop { min-width: 120px; border-top: none; }
  930. /* .txt 和 .textarea 属于旧的命名规范,待整理 by lushnis */.p_opt .txt, .p_opt .txtarea { margin: 5px 0; }

  931. .p_pop .flbc, .p_pof .flbc{margin-right: 8px;margin-top: 4px;}

  932. /* 弹出层 以下 class 都可以分开写,单独定义,以便个性化 */
  933. /* 四条边、四个角的公用样式 */
  934. .t_l, .t_c, .t_r, .m_l, .m_r, .b_l, .b_c, .b_r { overflow: hidden; {FLOATMASKBGCODE}; opacity: 0.2; filter: alpha(opacity=20); }
  935. /* 四个角 */
  936. .t_l, .t_r, .b_l, .b_r { width: 8px; height: 8px; }
  937. /* 上下两条边 */
  938. .t_c, .b_c { height: 8px; }
  939. /* 左右两条边 */
  940. .m_l, .m_r { width: 8px; }

  941. .t_l { -moz-border-radius: 8px 0 0 0; -webkit-border-radius: 8px 0 0 0; border-radius: 8px 0 0 0; }
  942. .t_r { -moz-border-radius: 0 8px 0 0; -webkit-border-radius: 0 8px 0 0; border-radius: 0 8px 0 0; }
  943. .b_l { -moz-border-radius: 0 0 0 8px; -webkit-border-radius: 0 0 0 8px; border-radius: 0 0 0 8px; }
  944. .b_r { -moz-border-radius: 0 0 8px 0; -webkit-border-radius: 0 0 8px 0; border-radius: 0 0 8px 0; }
  945. .m_c { {FLOATBGCODE}; }

  946. /* 弹出层内容区 by Pony */
  947. .m_c .tb { margin: 0 0 10px; padding: 0 10px; }
  948. .m_c .c { padding: 0 10px 10px; }
  949. .m_c .o { padding: 8px 10px; height: 26px; text-align: right; border-top: 1px solid #CCC; background: {COMMONBG}; }
  950. /* 分享时会用到 */
  951. .m_c .el { width: 420px; }
  952. .m_c .el li { padding: 0; border: none; }

  953. /* .flb 弹出层header */
  954. .flb { padding: 10px 10px 8px; height: 20px; line-height: 20px; }
  955. .flb em { float: left; font-size: 14px; font-weight: 700; color: {HIGHLIGHTLINK}; }
  956. .flb em a { text-decoration: none; }
  957. .flb .needverify { float: left; margin-left: 8px; padding-left: 13px; width: 45px; height: 21px; line-height: 21px; background: url({IMGDIR}/re_unsolved.gif) no-repeat 0 0; font-size: 12px; color: {LIGHTTEXT}; font-weight: 400; }
  958. .flb .onerror, .flb .onright { padding-left: 20px; height: auto; line-height: 140%; white-space: nowrap; font-size: 12px; font-weight: 400; }
  959. .flb .onerror { background: url({IMGDIR}/check_error.gif) no-repeat 0 50%; }
  960. .flb .onright { background: url({IMGDIR}/check_right.gif) no-repeat 0 50%; color: {MIDTEXT}; }

  961. .flb span { float: right; color: {LIGHTTEXT}; }
  962. .flb span a, .flb strong { float: left; text-decoration: none; margin-left: 8px; font-weight: 400; color: {LINK}; }
  963. .flb span a:hover { color: {LIGHTTEXT}; }
  964. .flbc { float: left; width: 20px; height: 20px; overflow: hidden; text-indent: -9999px; background: url({IMGDIR}/cls.gif) no-repeat 0 0; cursor: pointer; }
  965. .flbc:hover { background-position: 0 -20px; }

  966. .floatwrap { overflow: auto; overflow-x: hidden; margin-bottom: 10px; height: 280px; }

  967. .f_c { }
  968. .f_c li { list-style: none; }
  969. .f_c hr.l { margin: 0; }
  970. .f_c a { color: {HIGHLIGHTLINK}; }
  971. .f_c .list { margin: 0 auto 10px; width: 570px; border-top: 3px solid {COMMONBORDER}; }
  972. .f_c .list th, .f_c .list td { padding: 5px 2px; height: auto; border-bottom: 1px dashed {COMMONBORDER}; }
  973. .f_c .list .btns th, .f_c .list .btns td { border-bottom: none; }
  974. .f_c .th th, .f_c .th td { padding: 10px 0; }
  975. .f_c .list th { background: none; }

  976. /* 弹窗未开启时 nofloat */
  977. .nfl { height: auto !important; height: 320px; min-height: 320px; }
  978. .nfl .f_c { margin: 60px auto; padding: 20px; width: 580px; border: 3px solid {COMMONBG}; background: {WRAPBG}; }
  979. .nfl .loginform { height: auto; }
  980. .nfl .clause { width: auto; height: auto; }

  981. /* dropdownbtn 下拉菜单 */
  982. .hasd {}
  983. .hasd input { float: left; width: 121px; }
  984. .hasd input.crl { padding: 0; width: 20px; height: 20px; background: none; border-style: solid; border-color: {INPUTBORDERDARKCOLOR} {INPUTBORDER} {INPUTBORDER} {INPUTBORDERDARKCOLOR}; border-width: 1px 0 1px 1px; }
  985. .hasd .spmediuminput { width: 115px; }
  986. .dpbtn { float: left; overflow: hidden; text-indent: -9999px; width: 21px; height: 21px; border-width: 1px 1px 1px 0; border-style: solid; border-color: {INPUTBORDERDARKCOLOR} {INPUTBORDER} {INPUTBORDER} {INPUTBORDERDARKCOLOR}; background: {WRAPBG} url({IMGDIR}/newarow.gif) no-repeat 100% 0; }
  987. .dpbtn:hover { background-position: 100% -23px; }
  988. .hasd label { float: left; }
  989. .tpclg h4 a.dpbtn { float: right; border-width: 1px; }
  990. .tpclg h4 { font-weight: 400; }
  991. .tpclg .pt { margin: 5px 0; width: 212px; overflow: hidden; }
  992. /* 下面两行为评分时用到的 */
  993. .mark .dt, .mark .tpclg h4 { width: 270px; }
  994. .mark .tpclg .pt { width: 260px; }
  995. #postbox dd.hasd input { width: 99px; margin-right: 0; }

  996. /*弹窗 编辑器 颜色框 colorbox*/
  997. .colorbox{ width: 130px !important; }
  998. .colorbox input { float: left; margin: 2px; padding: 0; width: 12px; height: 12px; border: 0; cursor: pointer; }

  999. /* 短消息对话框 .pm -> personal_message (window) by Pony */
  1000. .pm { overflow: hidden; width: 400px; }
  1001. .pm .flb { margin-bottom: 0; padding: 1px 5px 4px; background: #CCC url({IMGDIR}/pm.png) repeat-x 0 -101px; }
  1002. * html .pm .flb { padding: 4px 5px 1px; }
  1003. .pm .flb em { padding-left: 15px; background: url({IMGDIR}/pm.png) no-repeat 0 -65px; text-shadow: 1px 1px 1px {WRAPBG}; color: {LINK}; font-size: 12px; }
  1004. .pm .flbc { background-image: url({IMGDIR}/pm.png); }
  1005. .pm_tac { padding: 5px 10px; background: {COMMONBG}; }
  1006. .pm .c { padding: 0; background: {COMMONBG}; }
  1007. .pmb { position: relative; padding: 20px 20px 0; width: 360px; height: 280px; overflow: auto; overflow-x: hidden; }
  1008. .pmb li { position: relative; margin-bottom: 10px; }
  1009. .pmt { overflow: hidden; position: absolute; bottom: 0; left: -6px; text-indent: -999px; width: 7px; height: 7px; background: url({IMGDIR}/pm.png) no-repeat -13px -40px; zoom: 1; }
  1010. .pmd { float: left; padding: 5px 8px; background: #F0F0F0 url({IMGDIR}/pm-bg1.png) repeat-x; border: 1px solid; border-color: #E7E7E7 #BBB #999 #E7E7E7; word-wrap: break-word; -moz-box-shadow: 2px 2px 4px #DDD; -webkit-box-shadow: 2px 2px 4px #DDD; box-shadow: 2px 2px 4px #DDD; -moz-border-radius: 10px 10px 10px 0; -webkit-border-radius: 10px 10px 10px 0; border-radius: 10px 10px 10px 0; }
  1011. .pmd, .pmd img { max-width: 292px; }
  1012. * html .pmd { width: expression(this.offsetWidth > 292 ? 292+'px':'auto'); }
  1013. * html .pmd img { width: expression(this.width > 292 ? 292 : true); }
  1014. /* 短消息下的引用和代码样式 */
  1015. .pmd .quote { overflow: hidden; margin: 0; padding-left: 16px; background: url({IMGDIR}/qa.gif) no-repeat 0 0; color: {MIDTEXT}; }
  1016. .pmd .quote blockquote { display: inline; margin: 0; padding-right: 16px; background: url({IMGDIR}/qz.gif) no-repeat 100% 100%; }
  1017. .pmd .blockcode { overflow: hidden; margin: 0; padding: 0; background: transparent; color: {MIDTEXT}; }
  1018. .pmd .blockcode code { font-family: Monaco, Consolas, 'Lucida Console', 'Courier New', serif; font-size: 12px; line-height: 1.8em; }
  1019. * html .pmd .blockcode code { font-family: 'Courier New', serif; }
  1020. .pmm .pmt { right: -6px; left: auto; background-position: 0 -47px; }
  1021. .pmm .pmd { float: right; background: #FEF5E7 url({IMGDIR}/pm-bg2.png) repeat-x; border-color: #FFC68C #F9D4A7 #F3BB65 #DDC4A9; -moz-box-shadow: -2px 2px 4px #DDD; -webkit-box-shadow: -2px 2px 4px #DDD; box-shadow: -2px 2px 4px #DDD; -moz-border-radius: 10px 10px 0 10px; -webkit-border-radius: 10px 10px 0 10px; border-radius: 10px 10px 0 10px; }
  1022. .pmb h4 { text-align: center; }
  1023. .pmfm { padding: 0 15px 15px; }
  1024. .pmfm .tedt { width: 365px; }
  1025. .pmfm .pt { height: 65px; }
  1026. .pmfm .pn { float: right; }
  1027. .pma a { margin-right: 5px; }

  1028. /* 短消息联系人列表 by Pony */
  1029. .pmo { position: absolute; top: 8px; right: 10px; overflow: hidden; padding-left: 10px; width: 130px; height: 31px; line-height: 24px; line-height /*\**/: 26px\9; background: url({IMGDIR}/pn.png) repeat-x 0 -320px; text-shadow: 1px 1px 1px {WRAPBG}; }
  1030. .pmo em { display: block; padding: 3px 5px 4px 0; background: url({IMGDIR}/pn.png) no-repeat 100% -360px; }
  1031. .pmo a { overflow: hidden; white-space: nowrap; display: block; padding-right: 10px; background: url({IMGDIR}/pm.png) no-repeat 100% -222px; outline: none; }
  1032. .pmo .b { background-position: 100% -278px; }

  1033. /* .pmfl -> pm_friend_list (Window) */
  1034. .pmfl { position: absolute; top: 35px; right: 10px; z-index: 200; width: 138px; border: solid #CCC; border-width: 0 1px 1px; background: {WRAPBG}; }
  1035. .pmfl .s, .pmfl .o { padding: 5px; border-bottom: 1px solid #CCC; background: {COMMONBG}; }
  1036. .pmfl .o { border-bottom-color: {WRAPBG}; }
  1037. .pmfl .s .px { padding-left: 20px; width: 101px; background: {WRAPBG} url({IMGDIR}/pm.png) no-repeat 0 -160px; }
  1038. .pmfl .o .ps { width: 100%; }
  1039. .pmfl ul { overflow: auto; overflow-x: hidden; width: 138px; height: 306px; }
  1040. .pmfl li { padding: 5px; height: 24px; }
  1041. .pmfl .avt { float: left; width: 29px; height: 29px; }
  1042. .pmfl .avt img { padding: 0; width: 24px; height: 24px; border: none; }
  1043. /* 跳动的头像样式 by Pony */
  1044. .pmfl .newpm img { margin: 1px 0 0 1px; }
  1045. .pmfl p { overflow: hidden; white-space: nowrap; width: 78px; }
  1046. /* 当前交谈的用户 */
  1047. .pmfl p .a { color: red; }
  1048. /* 在线的用户 */
  1049. .pmfl p .ol { color: {LINK}; }
  1050. .pmfl strong { color: #000; }

  1051. /* 登录和注册 */

  1052. .rfm { margin: 0 auto; width: 760px; border-bottom: 1px dotted {COMMONBORDER}; }
  1053. .rfm a { color: {HIGHLIGHTLINK}; }
  1054. .rfm .rq {}
  1055. .rfm th, .rfm td { padding: 10px 2px; vertical-align: top; line-height: 24px; }
  1056. .rfm .tipwide { padding-top: 0; }
  1057. .rfm th { padding-right: 10px; width: 10em; text-align: right; }
  1058. .rfm .px { width: 220px; }
  1059. .rfm .px:focus { border-color: {HIGHLIGHTLINK}; background: #FFF; }
  1060. .rfm .p_tip { position: absolute; z-index: 2; display: none; padding-left: 10px; width: 390px; background: {WRAPBG}; color: {MIDTEXT}; font-style: normal; }
  1061. .rfm .p_chk { position: absolute; z-index: 1; padding-left: 10px; width: 390px; color: red; font-weight: 700; font-family: {FONT}; }
  1062. .rfm #emailmore { position: absolute; }
  1063. .p_right { background: url({IMGDIR}/check_right.gif) no-repeat 10px 12px; width: 30px; }
  1064. #returnmessage4 { display: none; padding: 10px 0; border-bottom: 1px solid {COMMONBORDER}; background: #FFE; text-align: center; font-weight: 700; }
  1065. #returnmessage4.onerror { display: block; }
  1066. .rfm .l { margin: 0; }
  1067. .blr .c { padding: 0 10px 10px; }
  1068. .login_slct a { margin-right: -8px; padding-right: 16px; background: url({IMGDIR}/arrwd.gif) no-repeat 100% 50%; }
  1069. .fwin .rfm, .nfl .f_c .rfm { width: 500px; }
  1070. .fwin .rfm th, .fwin .rfm td, .nfl .f_c .rfm th, .nfl .f_c .rfm td { padding: 6px 2px; }
  1071. .fwin .loginb button { margin-left: 11.3em; }
  1072. .nfl .f_c .loginb button { margin-left: 12em; }

  1073. /*
  1074. Name: mod_passlevel
  1075. Level: Function
  1076. Explain: 密码强度检测
  1077. Last Modify: lushnis
  1078. */
  1079. .passlevel { padding-left: 70px; background: url({IMGDIR}/passlevel.png) no-repeat 0 5px; }
  1080. .passlevel1 { background-position: 0 -35px; }
  1081. .passlevel2 { background-position: 0 -75px; }
  1082. .passlevel3 { background-position: 0 -115px; }

  1083. .blr { width: 580px; margin: 20px auto 30px; }
  1084. .m_c .blr { margin: 0 auto; }
  1085. .lgfm { font: {FONTSIZE} {FONT}; float: left; margin-bottom: 10px; *margin-bottom: -10px; padding: 20px 0; width: 280px; border-right: 1px solid #CCC; }
  1086. .rgs { margin-bottom: 10px; }
  1087. .lgfm label, .lgfm p, .reginfo { clear: both; overflow: hidden; display: block; margin-bottom: 10px; line-height: 22px; }
  1088. /* 自定义的注册信息 */
  1089. .reginfo label { display: inline; }
  1090. .reg_c { float: left; width: 200px; }
  1091. .lgfm .txt, .lgfm .px { padding: 2px 4px; height: 16px; border: 1px solid; border-color: {INPUTBORDERDARKCOLOR} {INPUTBORDER} {INPUTBORDER} {INPUTBORDERDARKCOLOR}; background-image: none; }
  1092. .lgfm .txt, .lgfm .px, .lgfm .pt { width: 170px; }
  1093. .lgfm .ftid a, .lgfm .ftid a:hover { height: 20px; background-position: 100% -1px; border-color: {INPUTBORDERDARKCOLOR} {INPUTBORDER} {INPUTBORDER} {INPUTBORDERDARKCOLOR}; }
  1094. .fsb { clear: both; margin-top: 8px; padding: 10px; }
  1095. .fsb .z { padding-top: 5px; }
  1096. .m_c .fsb { background: {COMMONBG}; border-top: 1px solid #CCC; }
  1097. .fsb .pns { margin-right: 8px; }
  1098. .lgfm em, .fsb em { float: left; width: 60px; }
  1099. .fsb .pnr { *margin-top: 4px; }
  1100. .nlf .txt{ width: 230px; }
  1101. .brls { overflow: auto; margin-bottom: 10px; width: 470px; height: 240px; }
  1102. .sipt { float: none; margin: 0 0 10px; width: 234px; height: 20px; background-color: {WRAPBG}; border: 1px solid; border-color: {INPUTBORDERDARKCOLOR} {INPUTBORDER} {INPUTBORDER} {INPUTBORDERDARKCOLOR}; clear: left; }
  1103. .sipt a { float: left; width: 54px; border: none; }
  1104. .sipt a:hover, .sipt a:focus { border: none; }
  1105. .sipt .txt { float: left; width: 154px; border: none; outline: none; background: {WRAPBG}; }
  1106. .sltp { float: none; margin: 10px 0; clear: both; }
  1107. .sltp a, .sltp a:hover, .sltp a:focus { height: 20px; line-height: 20px; border-color: #EEE; background-color: transparent; background-position: 100% -1px; color: #069 !important; }
  1108. .sltp a:hover, .sltp a:focus { background-position: 100% -24px; }
  1109. .lpsw label { float: left; padding-left: 4px; width: 61px; line-height: 150%; }
  1110. .clck, .sipt .clck { background: {WRAPBG} url({IMGDIR}/clck.gif) no-repeat 98% 50%; }

  1111. .lgf { float: left; overflow: visible; margin: 47px 25px 10px 40px; }
  1112. .lgf h4 { margin-bottom: 10px; font-weight: 400; font-size: 14px; }
  1113. .lgf a { color: {HIGHLIGHTLINK}; }
  1114. .minf { margin-top: 23px; }

  1115. /*
  1116. Name: mod_messagelogin
  1117. Level: Global
  1118. Explain: showmessage 处的登录框
  1119. Last Modify: lushnis
  1120. */
  1121. #messagelogin { margin-top: 5px; border-top: 1px solid {COMMONBORDER}; }
  1122. #messagelogin .flb { padding-left: 0; }
  1123. #messagelogin .blr { margin: 0; }
  1124. #messagelogin .lgfm { padding-top: 0; }
  1125. #messagelogin .minf { margin-top: 0; }
  1126. #messagelogin .fsb { padding: 0; }

  1127. /*
  1128. Name: mod_fast_login
  1129. Level: Global
  1130. Explain: 页面头部的快速登录
  1131. Last Modify: Pony 11061011
  1132. */
  1133. .fastlg { line-height: 24px; }
  1134. .fastlg td { padding: 2px 0 2px 4px; }
  1135. .fastlg_fm { margin-right: 5px; padding-right: 5px; border-right: 1px solid {COMMONBORDER}; }
  1136. #ls_fastloginfield_ctrl { line-height: 20px; border: none; background-color: transparent; background-position: 100% -1px; }
  1137. #ls_fastloginfield_ctrl:hover { background-position: 100% -24px; }
  1138. .psw_w { padding-left: 5px; }

  1139. .fastlg_l { padding-right: 4px !important; border-right: 1px solid {SPECIALBG}; }

  1140. /* 打招呼 by Pony */
  1141. .poke { margin-bottom: 10px; }
  1142. .poke li { float: left; margin: 0 1% 5px 0; width: 32%; height: 22px; }
  1143. .poke img { vertical-align: middle; }

  1144. /* 普通数据列表 datatable by michael */
  1145. .dt { border-top: 1px solid {COMMONBORDER}; width: 100%; }
  1146. .dt th { background: {COMMONBG}; }
  1147. .dt td, .dt th { padding: 7px 4px; border-bottom: 1px solid {COMMONBORDER}; }
  1148. .dt .c { width: 50px; }

  1149. /* 用来展示数据的表格 */
  1150. .tdat { width: 100%; border: 1px solid {COMMONBORDER}; }
  1151. .tdat th, .tdat td { padding: 4px 5px; border: 1px solid {COMMONBORDER}; }

  1152. /* == um 公告 帮助 message 通用列表 lum -- um list == */
  1153. .um { margin-bottom: 1em; padding-bottom: 1em; border-bottom: 1px dashed {COMMONBORDER}; clear: left; }
  1154. .umh { margin-bottom: 10px; overflow: hidden; }
  1155. .umh h2, .umh h3 { clear: left; font-size: 14px; float: left; background: {WRAPBG} url({IMGDIR}/arrow.gif) no-repeat right 6px; padding-right: 14px; cursor: pointer; }
  1156. .schfaq h3 { background: none; cursor: default; }
  1157. .umh h3 a { color: {MIDTEXT}; }
  1158. .umh h3 span { font-size: 12px; font-weight: 400; color: {MIDTEXT}; }
  1159. .umh h2 em, .umh h3 em { margin-left: 8px; font-size: 12px; color: {LIGHTTEXT}; font-weight: 400; }
  1160. .umh_act { float: right; }
  1161. .umh .umh_cb { display: none; }
  1162. .umh .umh_ext { display: block; }
  1163. .umn { background: url({IMGDIR}/dash.gif) repeat-x 0 10px; clear: left; }
  1164. .umn h3 { background: {WRAPBG} url({IMGDIR}/arrow.gif) no-repeat right -35px; font-size: 14px; }
  1165. .umn .umh_cb { display: block; background-color: {WRAPBG}; color: {MIDTEXT}; cursor: pointer; }
  1166. .umn .umh_ext { display :none; }
  1167. .lum {}
  1168. .lum h2 { font-size: 14px; }
  1169. .lum ul { padding: 1em 0 1em 2em; margin-bottom: 1em; border-bottom: 1px dashed {COMMONBORDER}; }
  1170. .lum ul li { padding: 0.2em 0; }

  1171. /* pgs --> pages & postbutton 分页、发帖按钮, pgb -->返回首页, nxt -->下一页 */
  1172. .pgs {}
  1173. .pgs #newspecial, .pgs #newspecialtmp, .pgs #post_reply, .pgs #post_replytmp { float: left; margin-right: 5px; }
  1174. .pg { float: right; }
  1175. .pg, .pgb { line-height: 26px; }
  1176. .pg a, .pg strong, .pgb a, .pg label { float: left; display: inline; margin-left: 4px; padding: 0 8px; height: 26px; border: 1px solid; border-color: {SPECIALBORDER}; background-color: {WRAPBG}; background-repeat: no-repeat; color: {LINK}; overflow: hidden; text-decoration: none; }
  1177. .pg a.nxt, .pgb a { padding: 0 10px; }
  1178. .pg a:hover, .pgb a:hover { border-color: {HIGHLIGHTLINK}; color: {HIGHLIGHTLINK}; }
  1179. .pg a.nxt { padding-right: 25px; background-image: url({IMGDIR}/arw_r.gif); background-position: 90% 50%; }
  1180. .pg a.prev { background-image: url({IMGDIR}/arw_l.gif); background-position: 50% 50%; }
  1181. .pg strong { background-color: {SPECIALBG}; }
  1182. .pgb a { padding-left: 25px; background-image: url({IMGDIR}/arw_l.gif); background-position: 10px 50%; }
  1183. .pg label { cursor: text; }
  1184. .ie6 .pg label { padding-top: 3px; height: 23px; }
  1185. .pg label .px { padding: 0; width: 25px; height: 16px; line-height: 16px; }
  1186. #pgt .pg, #pgt .pgb { margin-top: 5px; }
  1187. /* 用于行动的按钮 button action */
  1188. .bac {margin: 0; padding: 0; width: 70px; height: 30px;line-height: 30px; color: {LINK}; overflow: hidden; text-decoration: none; background: url({IMGDIR}/pg_arw.png) no-repeat 0 0; text-align: center; text-indent: -7px; display: block;}

  1189. #psd .bn .mbn input, #postbox input { margin-right: 4px; }
  1190. #postbox .mbn, #psd .mbn { height: 1.6em; line-height: 1.6em; }

  1191. /* 用于积分奖励提示等弹出层提示 */
  1192. .popupcredit {}
  1193. .pc_l, .pc_c, .pc_inner, .pc_r { width: 29px; height: 56px; line-height: 56px; background: url({IMGDIR}/popupcredit_bg.gif) no-repeat 0 0; }
  1194. .pc_c { width: 200px; background-position: 0 -56px; background-repeat: repeat-x; }
  1195. .pc_inner { white-space: nowrap; text-align: center; width: auto; background-position: 50% -112px; }
  1196. .pc_inner i { margin-right: 10px; font-size: 12px; font-style: normal; color: {LIGHTLINK}; font-weight: 400; }
  1197. .pc_inner span { margin-right: 15px; color: #FFEA97; font-size: 14px; font-weight: 700; }
  1198. * html .pc_inner span { display: inline-block; }
  1199. .pc_inner span a { color: #FFEA97; text-decoration: underline; }
  1200. .pc_inner span em { color: {LIGHTLINK}; font-size: 18px; font-weight: 400; }
  1201. .pc_inner span u { font-size: 10px; text-decoration: none; }
  1202. .pc_inner span em.desc { color: #930; }
  1203. .pc_btn img { opacity: 0.5; }
  1204. .pc_btn:hover img { opacity: 1; }
  1205. .pc_r { background-position: -30px 0; }

  1206. /* 快速跳转菜单 */
  1207. #fjump_menu { padding: 7px 0 10px 10px; background: {COMMONBG}; }
  1208. .ie6 #fjump_menu { width: expression(this.getElementsByTagName('li')[2] ? '600px' : (this.getElementsByTagName('li')[1] ? '400px' : '200px')); }
  1209. #fjump_menu .sch { position: absolute; top: 6px; right: 10px; }
  1210. .jump_bdl { overflow: hidden; }
  1211. .jump_bdl li { float: left; overflow-x: hidden; overflow-y: auto; margin-right: 10px; padding: 5px; width: 178px; height: 300px; border: 1px solid {WRAPBORDERCOLOR}; background: {WRAPBG}; }
  1212. .bdl_title li { float: left; margin-right: 9px; padding: 0 1px; width: 189px; height: 33px; line-height: 23px; font-weight: 700; }
  1213. .bdl_title .px { width: 80px; }
  1214. .jump_bdl p { overflow: hidden; height: 25px; line-height: 25px; }
  1215. .jump_bdl .sub { text-indent: 1em; }
  1216. .jump_bdl .child { text-indent: 2em; }
  1217. .jump_bdl a { display: block; position: static !important; padding: 0 4px; text-decoration: none; color: {TABLETEXT}; }
  1218. .jump_bdl .a a, .jump_bdl .a a:hover { background-color: {SPECIALBG}; }

  1219. /* 可用道具列表 by lushnis */
  1220. .mgcmn { width: 100px; }
  1221. .mgcmn a { padding-left: 25px; line-height: 16px !important; }
  1222. .mgcmn img { position: absolute; margin-left: -20px; }

  1223. /* 高亮道具用到的 */
  1224. .cmen { overflow: hidden; width: 63px; }
  1225. .cmen a { overflow: hidden; float:left; width: 20px; height: 20px; }


  1226. /* 热点:站长推荐内容,在页面右下角弹出 */
  1227. .focus { position: fixed; right: 10px; bottom: 0; z-index: 300; overflow: hidden; width: 270px; background: {WRAPBG}; }
  1228. * html .focus { position: absolute; top: expression(offsetParent.scrollTop+document.documentElement.clientHeight-this.offsetHeight); }
  1229. .fctrl { margin-left: 10px; font-weight: 400; }
  1230. .fctrl img { margin-bottom: -4px; }
  1231. .fctrl em { display: inline-block; }
  1232. .focus .m img { width: 60px; height: 60px; }
  1233. .focus dt { padding-top: 0; }

  1234. /* 分享的验证码(全局) by Pony */
  1235. .m_c .sec .secq { display: block; margin: 5px 0 10px; }

  1236. /*
  1237. Name: mod_reason_select
  1238. Level: Global
  1239. Explain: 类似评分窗口中的评分原因选择的样式
  1240. Last Modify: Pony
  1241. */
  1242. .reason_slct {}
  1243. .reason_slct .reasonselect { height: 4.3em; overflow: scroll !important; overflow-x: auto !important; }
  1244. .reason_slct .reasonselect li { white-space: nowrap; }
  1245. .reason_slct .pt, .reason_slct .px { width: 25.2em !important; }
  1246. .reasonarea { height: 5.8em; }

  1247. /*
  1248. Name: mod_filebtn
  1249. Level: Global
  1250. Sample: <div class="filebtn">
  1251. <input type="file" class="pf cur1" size="1" />
  1252. <button type="button" class="pn pnc"><strong>{lang}</strong></button>
  1253. </div>
  1254. Explain: 模拟 <input type="file" />,注意不要让 button 太宽
  1255. Last Modify: Pony
  1256. */
  1257. .filebtn { position: relative; margin: 0 auto; width: 60px; overflow: hidden; }
  1258. .filebtn .pf { position: absolute; right: 0; height: 23px; opacity: 0; filter:alpha(opacity=0); }

  1259. /* 上传弹出层 */
  1260. .upfile { width: 220px; }
  1261. .uploadform { padding: 0 10px; border: 1px dashed {COMMONBORDER}; background: {COMMONBG}; }

  1262. /*
  1263. Name: mod_flashupload
  1264. Level: Global
  1265. Explain: Flash 上传时的处理界面,结构参见 /static/js/fileprogress.js
  1266. Last Modify: Pony 2012022813
  1267. */
  1268. .progressWrapper { overflow: hidden; width: 100%; }
  1269. .progressContainer { overflow: hidden; margin: 5px; padding: 4px; border: solid 1px #E8E8E8; background-color: #F7F7F7; }
  1270. .message { overflow: hidden; margin: 1em 0; padding: 10px 20px; border: solid 1px #FD9; background-color: #FFC; } /* Message */
  1271. .red { border: solid 1px #B50000; background-color: #FFEBEB; } /* Error */
  1272. .green { border: solid 1px #DDF0DD; background-color: #EBFFEB; } /* Current */
  1273. .blue { border: solid 1px #CEE2F2; background-color: #F0F5FF; } /* Complete */
  1274. .progressName { overflow: hidden; white-space: nowrap; width: 323px; height: 18px; text-align: left; font-weight: 700; color: #555; }
  1275. .progressBarInProgress, .progressBarComplete, .progressBarError { clear: both; margin-top: 2px; width: 0; height: 2px; background-color: blue; font-size: 0; }
  1276. .progressBarComplete { visibility: hidden; width: 100%; background-color: green; }
  1277. .progressBarError { visibility: hidden; width: 100%; background-color: red; }
  1278. .progressBarStatus { white-space: nowrap; margin-top: 2px; width: 337px; text-align: left; }
  1279. a.progressCancel { display: block; float: right; width: 14px; height: 14px; background: url({IMGDIR}/cancelbutton.gif) no-repeat -14px 0; font-size: 0; }
  1280. a.progressCancel:hover { background-position: 0 0; }
  1281. .swfupload { vertical-align: top; }


  1282. /* ------------------------------------------------------------------------ 拖拽及页面 DIY */
  1283. .frame, .frame-tab { margin-bottom: 10px; border: 1px solid {WRAPBORDERCOLOR}; background: {WRAPBG}; }
  1284. .title { padding: 0 10px; height: 32px; font-size: 14px; font-weight: 700; line-height: 32px; overflow: hidden; }
  1285. .frame-title, .frametitle, .tab-title { background: {COMMONBG} url({IMGDIR}/title.png) repeat-x 0 100%; }

  1286. /* 新的框架结构 */
  1287. .frame-1-1-l, .frame-1-1-1-l, .frame-1-1-1-c, .frame-2-1-l, .frame-1-2-l, .frame-3-1-l, .frame-1-3-l { float: left; }
  1288. .frame-1-1-r, .frame-1-1-1-r, .frame-2-1-r, .frame-1-2-r, .frame-3-1-r, .frame-1-3-r { float: right; }
  1289. .frame-1-1-l, .frame-1-1-r { width: 49.9% }
  1290. .frame-1-1-1-l, .frame-1-1-1-c, .frame-1-1-1-r, .frame-2-1-r, .frame-1-2-l { width: 33.3%; }
  1291. .frame-2-1-l, .frame-1-2-r { width: 66.6%; }
  1292. .frame-3-1-l, .frame-1-3-r { width: 74.9%; }
  1293. .frame-3-1-r, .frame-1-3-l { width: 24.9%; }
  1294. /* End */

  1295. /* X1 之前的框架结构 */
  1296. .frame .mn { margin-bottom: 0; }
  1297. .frame .sd { min-height: 0; _height: auto; }

  1298. .frame-1-1 .col-r { float: right; width: 49.9%; }
  1299. .frame-1-1 .col-l { float: left; width: 49.9%; }

  1300. .frame-1-2 .mn, .frame-1-2 .col-r, .frame .frame-1-2 .mn, .frame .frame-1-2 .col-r { float: right; width: 66.6%; }
  1301. .frame-1-2 .sd, .frame-1-2 .col-l, .frame .frame-1-2 .sd, .frame .frame-1-2 .col-l { float: left; width: 33.3%; }

  1302. .frame-2-1 .mn, .frame-2-1 .col-l, .frame .frame-2-1 .mn, .frame .frame-2-1 .col-l { float: left; width: 66.6%; }
  1303. .frame-2-1 .sd, .frame-2-1 .col-r, .frame .frame-2-1 .sd, .frame .frame-2-1 .col-r { float: right; width: 33.3%; }

  1304. .frame-1-3 .mn, .frame-1-3 .col-r, .frame .frame-1-3 .mn, .frame .frame-1-3 .col-r { float: right; width: 74.9%;}
  1305. .frame-1-3 .sd, .frame-1-3 .col-l, .frame .frame-1-3 .sd, .frame .frame-1-3 .col-l { float: left; width: 24.9%;}

  1306. .frame-3-1 .mn, .frame-3-1 .col-l, .frame .frame-3-1 .mn, .frame .frame-3-1 .col-l { float: left; width: 74.9%;}
  1307. .frame-3-1 .sd, .frame-3-1 .col-r, .frame .frame-3-1 .sd, .frame .frame-3-1 .col-r { float: right; width: 24.9%}

  1308. .frame-1-1-1 .col-l { float: left; width: 33.3%; }
  1309. .frame-1-1-1 .col-c { float: left; width: 33.3%; }
  1310. .frame-1-1-1 .col-r { float: right; width: 33.3%; }

  1311. .frame .frame-1-1-1 .col-l, .frame .frame-1-1-1 .col-c, .frame .frame-1-1-1 .col-r { padding: 0; width: 33%; }
  1312. .frame .frame-1-1 .col-l, .frame .frame-1-1 .col-r { width: 49.9%; }
  1313. /* End */

  1314. .frame .title .titletext, .block .title .titletext{ float: left; }
  1315. .frame-tab .tab-title .titletext { float: left; margin: 0 10px; }
  1316. .tab-title { padding: 0; width: 100% !important; border: none; }
  1317. .frame-tab .tb { margin-top: 0; padding-left: 15px; line-height: 32px; border: none; }
  1318. .frame-tab .tb li { margin: 0; margin-left: -1px; font-weight: 400; }
  1319. .frame-tab .tb li, .frame-tab .tb li a { -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; border-top: none; background: transparent none; }
  1320. * html .frame-tab .tb li a { float: left; }
  1321. .frame-tab .tb .a a { background: #FFF; font-weight: 700; }
  1322. .frame-tab .tb-c { padding: 10px 16px; }

  1323. .block { margin: 10px 10px 0; }
  1324. .frame-1-2 .sd .block, .col-l .block, .frame-2-1 .mn .block, .frame-1-1-1 .col-c .block, .frame-1-3 .sd .block, .frame-3-1 .mn .block { margin-right: 10px; }
  1325. .frame-1-2 .mn .block, .col-r .block, .frame-2-1 .sd .block, .frame-1-1-1 .col-c .block, .frame-1-3 .mn .block, .frame-3-1 .sd .block { margin-left: 10px; }
  1326. body#space .block { margin: 0 5px 10px; }
  1327. .temp {margin:1px;}
  1328. /* 重定义 frame */
  1329. #ct .frame { margin: 0; border: none; }
  1330. .bx { border: none; }
  1331. .bx .frame-1-1-1 { background: transparent url({IMGDIR}/vline2.png) repeat-y 320px 0; }
  1332. .bx .frame-2-1 { background: transparent url({IMGDIR}/vline.png) repeat-y 645px 0; }

  1333. /* 拖动生成的页面元素 by lushnis */
  1334. .drag .block .title { margin-bottom: 0; padding-left: 0; font-size: 14px; font-weight: 700; }

  1335. /* 重定义 block */
  1336. #ct .sd .block { margin: 0; }

  1337. .block .xl1 ul li { padding-left: 10px; background: url({IMGDIR}/dot.gif) no-repeat 0 50%; }
  1338. .ie_all .block .xl1 ul li { background-position: 0 6px; }

  1339. /* Frame stylies by lushnis */
  1340. .xfs { border-top: none; }
  1341. .xfs .frame-title, .xfs .frametitle, .xfs .tab-title { border: none; background: transparent url({IMGDIR}/mu.png) repeat-x 0 0; }
  1342. .xfs .frame-title, .xfs .frametitle, .xfs .tab-title, .xfs .frame-title a, .xfs .frametitle a, .xfs .tab-title a { color: #FFF !important; }
  1343. .xfs .tb li a { height: 32px; border: none !important; }
  1344. .xfs .tb .a a { background: transparent url({IMGDIR}/mu.png) no-repeat 50% -165px; }
  1345. .xfs_1 { border-color: #2267B5; }
  1346. .xfs_1 .frame-title, .xfs_1 .frametitle, .xfs_1 .tab-title { background-color: #2267B5; background-position: 0 0; }
  1347. .xfs_1 .tb .a a { background-position: 50% -66px; }
  1348. .xfs_2 { border-color: #A90000; }
  1349. .xfs_2 .frame-title, .xfs_2 .frametitle, .xfs_2 .tab-title { background-color: #A90000; background-position: 0 -99px; }
  1350. .xfs_2 .tb .a a { background-position: 50% -165px; }
  1351. .xfs_3 { border-color: #006C6C; }
  1352. .xfs_3 .frame-title, .xfs_3 .frametitle, .xfs_3 .tab-title { background-color: #006C6C; background-position: 0 -198px; }
  1353. .xfs_3 .tb .a a { background-position: 50% -264px; }
  1354. .xfs_4 { border-color: #EC5A00; }
  1355. .xfs_4 .frame-title, .xfs_4 .frametitle, .xfs_4 .tab-title { background-color: #EC5A00; background-position: 0 -297px; }
  1356. .xfs_4 .tb .a a { background-position: 50% -363px; }
  1357. .xfs_5 { border-color: #6F099E; }
  1358. .xfs_5 .frame-title, .xfs_5 .frametitle, .xfs_5 .tab-title { background-color: #6F099E; background-position: 0 -396px; }
  1359. .xfs_5 .tb .a a { background-position: 50% -462px; }
  1360. .xfs_nbd { border: none; }
  1361. .xfs_nbd .block { margin-top: 0; margin-bottom: 10px; }
  1362. .xfs_nbd .col-l .block, .xfs_nbd .frame-1-1-l .block, .xfs_nbd .frame-2-1-l .block, .xfs_nbd .frame-1-2-l .block, .xfs_nbd .frame-3-1-l .block, .xfs_nbd .frame-1-3-l .block, .xfs_nbd .frame-1-1-1-l .block { margin-left: 0; }
  1363. .xfs_nbd .sd .block, .xfs_nbd .col-r .block, .xfs_nbd .frame-1-1-r .block, .xfs_nbd .frame-2-1-r .block, .xfs_nbd .frame-1-2-r .block, .xfs_nbd .frame-3-1-r .block, .xfs_nbd .frame-1-3-r .block, .xfs_nbd .frame-1-1-1-r .block { margin-right: 0; }


  1364. /* Block stylies by lushnis */
  1365. .xbs { background: no-repeat 0 100%; }
  1366. .xbs .title { padding-left: 0; padding-right: 10px; background: no-repeat 100% 0; }
  1367. .xbs .titletext { float: left; padding-left: 10px; background: no-repeat 0 0; }
  1368. .xbs .dxb_bc { padding-bottom: 6px; background: transparent no-repeat 100% 100%; }
  1369. .xbs .module, .xbs .portal_block_summary { padding: 10px 10px 4px; border-style: solid; border-width: 0 1px; }
  1370. .xbs_1 { border: 1px solid #CCC; }
  1371. .xbs_1 .title { padding: 0 10px; height: 31px; border-bottom: 1px solid #CCC; background: url({IMGDIR}/thead.png) repeat-x 0 0; line-height: 31px; }
  1372. .xbs_1 .title, .xbs_1 .title a { color: #666 !important; }
  1373. .xbs_1 .dxb_bc { padding: 9px 10px; }
  1374. .xbs_2 { background-image: url({STATICURL}image/diy/bs_2_ft.png); }
  1375. .xbs_2 .title, .xbs_2 .titletext { background-image: url({STATICURL}image/diy/bs_2_hd.png); }
  1376. .xbs_2 .title, .xbs_2 .title a { color: #F60 !important; }
  1377. .xbs_2 .dxb_bc { background-image: url({STATICURL}image/diy/bs_2_ft_r.png); }
  1378. .xbs_2 .module, .xbs_2 .portal_block_summary { border-color: #E0E0E0; }
  1379. .xbs_3 { background-image: url({STATICURL}image/diy/bs_3_ft.png); }
  1380. .xbs_3 .title, .xbs_3 .titletext { background-image: url({STATICURL}image/diy/bs_3_hd.png); }
  1381. .xbs_3 .title, .xbs_3 .title a { color: #FFF !important; }
  1382. .xbs_3 .dxb_bc { background-image: url({STATICURL}image/diy/bs_3_ft_r.png); }
  1383. .xbs_3 .module, .xbs_3 .portal_block_summary { border-color: #B2B2B2; background-color: #F1F1F1; }
  1384. .xbs_4 { background-image: url({STATICURL}image/diy/bs_4_ft.png); }
  1385. .xbs_4 .title, .xbs_4 .titletext { background-image: url({STATICURL}image/diy/bs_4_hd.png); }
  1386. .xbs_4 .title, .xbs_4 .title a { color: #FFF !important; }
  1387. .xbs_4 .dxb_bc { background-image: url({STATICURL}image/diy/bs_4_ft_r.png); }
  1388. .xbs_4 .module, .xbs_4 .portal_block_summary { border-color: #B2B2B2; }
  1389. .xbs_5 { background-image: url({STATICURL}image/diy/bs_5_ft.png); }
  1390. .xbs_5 .title { padding: 0 10px; height: 30px; border: 1px solid; border-color: #F08C3B #F08C3B #DDD; background: url({STATICURL}image/diy/bs_5_hd.png) repeat-x 0 0; line-height: 30px; }
  1391. .xbs_5 .title, .xbs_5 .title a { color: #BC4A2D !important; }
  1392. .xbs_5 .dxb_bc { padding-bottom: 10px; background-image: url({STATICURL}image/diy/bs_5_ft_r.png); }
  1393. .xbs_5 .module, .xbs_5 .portal_block_summary { padding: 10px 10px 0; border-color: #F08C3B; }
  1394. .xbs_6 { background-image: url({STATICURL}image/diy/bs_6_ft.png); }
  1395. .xbs_6 .title, .xbs_6 .titletext { background-image: url({STATICURL}image/diy/bs_6_hd.png); line-height: 24px; }
  1396. .xbs_6 .titletext { height: 32px; }
  1397. .xbs_6 .title, .xbs_6 .title a { color: #FFF !important; }
  1398. .xbs_6 .dxb_bc { background-image: url({STATICURL}image/diy/bs_6_ft_r.png); }
  1399. .xbs_6 .module, .xbs_6 .portal_block_summary { border-color: #4B85A0; }
  1400. .xbs_7 { background-image: url({STATICURL}image/diy/bs_7_ft.png); }
  1401. .xbs_7 .title, .xbs_7 .titletext { background-image: url({STATICURL}image/diy/bs_7_hd.png); }
  1402. .xbs_7 .title, .xbs_7 .title a { color: #444 !important; }
  1403. .xbs_7 .dxb_bc { background-image: url({STATICURL}image/diy/bs_7_ft_r.png); }
  1404. .xbs_7 .module, .xbs_7 .portal_block_summary { border-color: #E5E5E5; }

  1405. .fcs { font-size: 12px; }
  1406. .fcs dt, .fcs dd { margin: 0; padding: 0; }
  1407. .fcs dt { font-size: 18px; font-weight: 100; }
  1408. .fcs dd, .fcs dd a { color: {MIDTEXT}; }

  1409. /* 幻灯片 */
  1410. .slideblock { position: relative; }
  1411. .slideshow { clear: both; }
  1412. .slideshow li { position: relative; overflow: hidden; }
  1413. .slideshow span.title { position: absolute; bottom: 0; left: 0; margin-bottom: 0; width: 100%; height: 32px; line-height: 32px; font-size: 14px; text-indent: 10px; }
  1414. .slideshow span.title, .slidebar li { background: rgba(0, 0, 0, 0.3); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = #30000000, endColorstr = #30000000); color: {LIGHTLINK}; overflow: hidden; }
  1415. .slidebar li { float: left; margin-right: 1px; width: 20px; height: 20px; line-height: 20px; text-align: center; font-size: 10px; cursor: pointer; }
  1416. .slidebar li.on { background: rgba(255, 255, 255, 0.5); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = #50FFFFFF, endColorstr = #50FFFFFF); color: #000; font-weight: 700; }

  1417. /* 清除DIY产生的多余样式使用的公共样式 */
  1418. .cl_frame_bm { margin: 0 !important; border: 0 !important;}
  1419. .cl_block_bm { margin: 0 !important; border: 0 !important;}
  1420. .cl_block_bm .dxb_bc { margin: 0 !important;}

  1421. /* 侧边调用 */
  1422. /* 投票 */
  1423. .b_poll dt { padding-left: 20px; background: url({IMGDIR}/pollsmall.gif) no-repeat 0 9px; }
  1424. .b_poll dd li { padding: 0 0 4px 20px; }
  1425. .b_poll dd li .pc { float: left; margin: 4px 0 0 -20px; }
  1426. .b_debate {}
  1427. .b_debate dt { padding-left: 20px; background: url({IMGDIR}/debatesmall.gif) no-repeat 0 10px; }
  1428. .b_debate .chart { position: relative; margin: 8px auto; padding: 0; width: 279px; height: 78px; background: url({IMGDIR}/p_debate_chart.png) no-repeat 0 0; }
  1429. .b_debate .chart strong { position: absolute; top: 25px; width: 80px; font-size: 14px; text-align: center; }
  1430. .b_debate .chart .debater2 { right: 0; }
  1431. .b_debate .chart1, .b_debate .chart2 { position: absolute; left: 80px; bottom: 0; width: 40px; background: url({IMGDIR}/p_debate_chart.png) no-repeat 0 -78px; }
  1432. .b_debate .chart2 { left: 159px; background-position: 100% -78px; }
  1433. .b_debate p { height: 1.5em; overflow: hidden; }
  1434. .b_hstab td { padding: 5px 0; border-bottom: 1px solid {COMMONBORDER}; }


  1435. /*
  1436. Name: mod_tip
  1437. Level: Global
  1438. Explain: 弹出的气泡信息,1、2、3、4 分别指气泡尖角从左上到左小顺时针方向的位置
  1439. Last Modify: lushnis
  1440. */
  1441. .tip { position: absolute; padding: 10px; width: 260px; border: 1px solid #B1B1B1; background: #FEFEE9; }
  1442. .tip_1, .tip_2 { margin-top: 8px; }
  1443. .tip_3, .tip_4 { margin-top: -8px; }
  1444. .tip_horn { position: absolute; width: 11px; height: 6px; overflow: hidden; }
  1445. .tip_1 .tip_horn { left: 5px; top: -6px; background: url({IMGDIR}/tip_top.png); }
  1446. .tip_2 .tip_horn { right: 5px; top: -6px; background: url({IMGDIR}/tip_top.png); }
  1447. .tip_3 .tip_horn { right: 5px; bottom: -6px; background: url({IMGDIR}/tip_bottom.png); }
  1448. .tip_4 .tip_horn { left: 5px; bottom: -6px; background: url({IMGDIR}/tip_bottom.png); }
  1449. .tip_js .tip_horn { right: 61px; bottom: -6px; background: url({IMGDIR}/tip_bottom.png); }
  1450. .aimg_tip { margin-top: 0; }

  1451. /* 推荐商品 by dfox */
  1452. em.hot { position: absolute; left: -2px; top: -2px; text-indent: -9999px; overflow: hidden; background: url({IMGDIR}/hot.png) no-repeat 0 0; }

  1453. /* 板块、群组、空间主区域/侧边搜索 by dfox */
  1454. .gsh { text-align: center; }
  1455. .gsh h1 { margin: 1em 0 0.5em -60px; font-size: 16px; font-weight: 100; }
  1456. .gsh .px { width: 272px; }
  1457. .gsh .pns .px { margin-right: 3px; width: 190px; }

  1458. /* 名片 */
  1459. .card { padding: 0; width: 295px !important; border-color: {SPECIALBORDER}; background: #FDFEFF; }
  1460. .card .p_opt { padding: 0; }
  1461. .card .avt { position: absolute; display: inline; margin-left: -70px; width: 70px; }
  1462. .card_mn, .card_info { padding: 10px 10px 10px 80px; }
  1463. .card_mn { min-height: 56px; }
  1464. .ie6 .card_mn { height: 56px; }
  1465. .card_info { border: dashed {COMMONBORDER}; border-width: 1px 0; }
  1466. .card_msg { width: 95%; height: 4em; }
  1467. .card a { padding: 0; display: inline !important; white-space: normal; border-bottom: none; }
  1468. .card a:hover { background-color: transparent !important; color: {TABLETEXT}; text-shadow: none; }
  1469. .card .o { clear: both; padding: 5px 10px; }
  1470. .card .o a { float: left; margin: 3px 5px 3px 0; padding: 2px 0; width: 5em; border: 1px solid {SPECIALBORDER}; background: {SPECIALBG} url({IMGDIR}/card_btn.png) repeat-x 0 100%; line-height: 14px; text-align: center; }
  1471. .ie_all .card .o a { padding: 3px 0 0; }
  1472. .card .mgc, .card .f { padding: 0 10px 5px; }
  1473. .card .f li { display: block; }

  1474. /*
  1475. Name: mod_BIUC
  1476. Level: Global
  1477. Explain: 模块中编辑单条数据BIU、颜色选择器其中 colorwd 要配合 pn 使用(不要合并 colorwd 的 background,因为其他配色会受影响)
  1478. Last Modify: Pony
  1479. */
  1480. .ss em { display: block; float: left; margin-right: 2px; padding-left: 7px; width: 16px; line-height: 23px; background: #EEE; cursor: pointer; }
  1481. .ss em.a { background: #09F; color: #FFF; }
  1482. .dopt a { float: left; margin-right: 3px; width: 21px !important; height: 21px; line-height: 21px; text-align: center; }
  1483. .dopt_b, .dopt_i, .dopt_l { border: 1px solid #F1F5FA; outline: none; }
  1484. .dopt .cnt { border: 1px solid #999; background-color: {WRAPBG}; }
  1485. .colorwd { margin-left: 3px; width: 23px !important; background-color: {MIDTEXT}; background-image: url({IMGDIR}/pn_color.png) !important; background-repeat: no-repeat; background-position: 0 0; }
  1486. .colorwd:active { background-position: 0 0; }
  1487. .ie6 .colorwd, .ie7 .colorwd { background-position: -1px -1px; }
  1488. .ie6 a.colorwd, .ie7 a.colorwd { background-position: 0 0; }
  1489. .colorpx { margin: 0 -3px 0 3px; border-right: none; }

  1490. /*
  1491. DIY图片幻灯片未加载时隐藏,模块标识隐藏
  1492. */
  1493. .slidebox, .block-name {display: none; }

  1494. .imgzoom_title { padding: 10px 0 0; color: #666; }
  1495. .imgzoom_exif { position: absolute; left: 10px; bottom: 24px; padding: 0 6px; height: 18px; background: rgba(0,0,0,.6); text-align: left; line-height: 1.5; color: white; overflow: hidden;}
  1496. .imgzoom_exif_hover { height: auto; }
  1497. .ie_all .imgzoom_exif, .imgzoom_exif_hover { background: #000; }
  1498. .ie6 .imgzoom_exif { bottom: 39px; }

  1499. .patch { width: 300px; }
  1500. .patch .bm { border-color: #F26C4F; background: #FFF; }
  1501. .patch .allfixed { border-color: #6C3; }
  1502. .patch .bm_h { border: solid #FFF; border-width: 1px 1px 0; background: #F26C4F; }
  1503. .patch .allfixed .bm_h { background: #6C3; }
  1504. .patch h2, .patch .bm_h .y { color: #FFF; }
  1505. .patch table { table-layout: fixed; }
  1506. .patch th, .patch td { padding: 2px; border-bottom: 1px dotted #CDCDCD; }
  1507. .patchdate { width: 70px; }
  1508. .patchstat { width: 55px; }
  1509. .unfixed { color: #F26C4F; }
  1510. .plugin { width: 300px; }
  1511. .plugin .bm_h { border-color: {COMMONBORDER}; color: {TABLETEXT}; background: {COMMONBG}; }

  1512. .bm_c .m { border-bottom: 1px dashed {COMMONBORDER};}
  1513. .lk .m li { clear: none; float:left; width:49%; padding:0;height:50px; border-bottom:0px;}
  1514. .m .mbm { margin-bottom:0px !important; }
  1515. .lk p {height:17px;overflow:hidden;}
  1516. .lk .m img {margin-left:0px; float:left;}
  1517. .lk_logo .lk_content {float: none;display:block; padding-right:10px;}
复制代码

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-26 14:26 , Processed in 0.035740 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表