Commit 9bbaf7c0 authored by 神楽坂玲奈's avatar 神楽坂玲奈

父版块 子版块支持,夜露only

git-svn-id: http://glupx.googlecode.com/svn/trunk/Reliz@72 189f022a-1064-8ae2-3e6f-c4a67275c50b
parent dceca8d0
......@@ -5,7 +5,8 @@ class BoardsController < ApplicationController
# GET /boards
# GET /boards.xml
def index
@boards = Board.all#[Board.find(1)]#_all_by_id 1
@board = Board.root
@boards = @board.subboards
@actions = []
respond_to do |format|
format.html # index.html.erb
......
......@@ -49,11 +49,9 @@ class UsersController < ApplicationController
respond_to do |format|
if @user.save
session[:user_id] = @user.id
#p session
format.html { redirect_to(@user, :notice => 'User was successfully created.') }
format.html { redirect_to(:root, :notice => 'User was successfully created.') }
format.xml { render :xml => @user, :status => :created, :location => @user }
else
#return render :text => [@user.errors.class, @user.errors]
format.html { render :action => "new" }
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
end
......
class Board < ActiveRecord::Base
belongs_to :superboard, :foreign_key => :super_id, :class_name => "::Board"
has_many :subboards, :foreign_key => :super_id, :class_name => "::Board"#, :as => :boards
#why it doesn't work?
belongs_to :superboard, :class_name => "::Board"
has_many :subboards, :foreign_key => :superboard_id, :class_name => "::Board"
has_many :topics, :foreign_key => :category_id
has_many :posts, :through =>:topics
default_scope order(:displayorder)
def to_s
"<a href=\"/boards/#{id}\">#{name}</a>".html_safe
end
def logo_url
read_attribute(:logo)
end
def logo
"<a href=\"/boards/#{id}\"><img src=\"#{logo_url}\"/></a>".html_safe
end
#alias topics_with_deleted topics
#def topics
# topics_with_deleted.where({:deleted => false}).order('').order('name')
#def logo_url
# read_attribute(:logo)
#end
#def superboard
# board
#end
#def subboards
# p "-------------------------"
# p boards
# boards
#
#def logo
# "<a href=\"/boards/#{id}\"><img src=\"#{logo_url}\"/></a>".html_safe
#end
def self.root
Board.find_by_superboard_id 0
end
end
<div id="wrapper">
<div id="wrap" class="wrap s_clear">
<div class="itemtitle s_clear">
<p class="right boardcount">
<%=t 'datetime.today' %>: <em><%= Post.today.count %> </em>,
<%=t 'datetime.yesterday' %>: <em><%= Post.yesterday.count %></em>,
<%=t 'stat.total' %>: <em><%= Post.count %></em>
</p>
</div><div class="mainbox list">
<span class="headactions">
<%= image_tag 'common/collapsed_no.gif', :id => 'category_3_img', :title => 'sq/zk '%>
<div class="itemtitle s_clear">
<p class="right boardcount">
<%=t 'datetime.today' %>: <em><%= Post.today.count %> </em>,
<%=t 'datetime.yesterday' %>: <em><%= Post.yesterday.count %></em>,
<%=t 'stat.total' %>: <em><%= Post.count %></em>
</p>
</div>
<% @boards.each do |superboard| %>
<div class="mainbox list">
<span class="headactions">
<%= image_tag 'common/collapsed_no.gif', :id => 'category_3_img', :title => 'sq/zk '%>
</span>
</span>
<%# @boards.each do |area| %>
<%# next if area.subboards.empty? %>
<h3><a href="index.php?gid=3" style="">测试版块</a></h3>
<table id="category_3" summary="category3" cellspacing="0" cellpadding="0" style="">
<% @boards.each do |board| %>
<tbody id="board<%= board.id %>">
<tr>
<th>
<%= board.logo %>
<div class="left">
<h2><%= board %></h2>
<p><%= board.introduction %></p></div>
</th>
<td class="boardnums">
<em><%= board.topics.size %></em> / <%= board.posts.size %></td>
<td class="boardlast">
<% if board.topics.last %>
<p><%= board.topics.last %></p>
<cite><%= board.posts.last.user %> - <span title="<%= board.posts.last.updated_at %>"><%=l board.posts.last.updated_at, :format => :short %></span></cite>
<% else %>
none
<% end %>
</td>
</tr>
</tbody>
<% end %>
</table>
</div>
<%# end %>
<div id="ad_intercat_16"></div>
<div class="mainbox list">
<span class="headactions">
<%= image_tag 'common/collapsed_no.gif' %>
<h3>link</h3>
<div id="boardlinks" style="">
</div>
</div>
<div class="mainbox list" id="online">
<span class="headactions"><a href="index.php?showoldetails=yes#online" class="nobdr"><%= image_tag 'common/collapsed_yes.gif' %></a></span>
<h3><%= superboard %></h3>
<table id="category_<%= superboard.id %> " summary="category<%= superboard.id %>" cellspacing="0" cellpadding="0" style="">
<% superboard.subboards.each do |board| %>
<tbody id="board<%= board.id %>">
<tr>
<th>
<%= image_tag board.logo, :style => "float:left; margin-right: 10px" %>
<div class="left">
<h3>
<%= render 'layouts/onlineuserbar' %>
</h3>
</div>
<h2><%= board %></h2>
<p><%= board.introduction %></p>
<% unless board.subboards.empty? %>
<p><%=t 'board.subboard' %>:
<% board.subboards.each do |subboard| %>
<%= subboard %>
<% end %>
</p>
<% end %>
</div>
</th>
<td class="boardnums">
<em><%= board.topics.size %></em> / <%= board.posts.size %></td>
<td class="boardlast">
<% if board.topics.last %>
<p><%= board.topics.last %></p>
<cite><%= board.posts.last.user %> - <span title="<%= board.posts.last.updated_at %>"><%=l board.posts.last.updated_at, :format => :short %></span></cite>
<% else %>
<%=t 'board.none' %>
<% end %>
</td>
</tr>
</tbody>
<% end %>
</table>
</div>
<% end %>
<div id="ad_intercat_16"></div>
<div class="mainbox list">
<span class="headactions">
<%= image_tag 'common/collapsed_no.gif' %>
<h3>link</h3>
<div id="boardlinks" style="">
</div>
</div>
<div class="mainbox list" id="online">
<span class="headactions"><a href="index.php?showoldetails=yes#online" class="nobdr"><%= image_tag 'common/collapsed_yes.gif' %></a></span>
<h3>
<%= render 'layouts/onlineuserbar' %>
</h3>
</div>
</div>
\ No newline at end of file
<h1>New board</h1>
<%= form_for(@board) do |f| %>
<% if @board.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@board.errors.count, "error") %> prohibited this board from being saved:</h2>
<%= render 'form' %>
<ul>
<% @board.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<%= link_to 'Back', boards_path %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :introduction %><br />
<%= f.text_area :introduction %>
</div>
<div class="field">
<%= f.label :notice %><br />
<%= f.text_area :notice %>
</div>
<div class="field">
<%= f.label :logo %><br />
<%= f.text_field :logo %>
</div>
<div class="field">
<%= f.label :banner %><br />
<%= f.text_field :banner %>
</div>
<div class="field">
<%= f.label :readperm %><br />
<%= f.text_field :readperm %>
</div>
<div class="field">
<%= f.label :topicperm %><br />
<%= f.text_field :topicperm %>
</div>
<div class="field">
<%= f.label :postperm %><br />
<%= f.text_field :postperm %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
<div id="wrapper">
<div id="wrap" class="wrap s_clear">
<div class="main">
<div class="content">
......@@ -144,4 +143,3 @@
</div><ul class="popupmenu_popup headermenu_popup" id="plugin_menu" style="display: none"> <li><a id="mn_plugin_family_family" href="plugin.php?id=family:family">家族门派</a></li>
</ul>
<ul class="popupmenu_popup headermenu_popup" id="1nNcin_menu" style="display: none"><li><a href="plugin.php?id=moodwall" hidefocus="true" >心情墙壁</a></li><li><a href="plugin.php?id=dps_medalcenter" hidefocus="true" >勋章中心</a></li><li><a href="magic.php" hidefocus="true" >道具中心</a></li><li><a href="plugin.php?id=rs_sign:sign" hidefocus="true" >每日签到</a></li><li><a href="pet.php" hidefocus="true" >口袋东方</a></li><li><a href="plugin.php?id=promotion:promotion" hidefocus="true" >宣传中心</a></li><li><a href="bank.php" hidefocus="true" >社区银行</a></li><li><a href="plugin.php?id=family:family" hidefocus="true" >家族领地</a></li></ul>
</div>
\ No newline at end of file
<!--<h1>Glupx</h1>
<h2><%#= @actions.shift %>
<%# @actions.each do |action| %>
- <%#= action %>
<%# end %></h2>-->
<body id="index" onkeydown="if(event.keyCode==27) return false;">
<div id="append_parent"></div><div id="ajaxwaitid"></div>
<div id="topbar" name="TOP">
<div class="topanel">
<div id="memberp">
<%= render 'layouts/userbar' %>
</div>
<%= render 'layouts/searchbar' %>
</div>
<div class="topanel">
<div id="memberp">
<%= render 'layouts/userbar' %>
</div>
<%= render 'layouts/searchbar' %>
</div>
</div>
<div id="headerbg">
<div class="header">
<embed src="<%= image_path('common/banner.swf') %>" quality="high" wmode="transparent" style=" float:left; " pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="898" height="116"></embed>
<div id="ad_headerbanner"></div>
</div>
<div id="dmenu">
<div class="bg-dmenuleft"></div>
<div class="bg-dmenu" style="position: relative;">
<div id="menu">
<%= render "layouts/navibar" %>
</div>
<div id="style_switch">
<%= render 'layouts/themebar' %>
<div class="header">
<embed src="<%= image_path('common/banner.swf') %>" quality="high" wmode="transparent" style=" float:left; " pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="898" height="116"></embed>
<div id="ad_headerbanner"></div>
</div>
</div>
</div>
<div id="myprompt_menu" style="display:none" class="promptmenu">
<div class="promptcontent">
<div id="dmenu">
<div class="bg-dmenuleft"></div>
<div class="bg-dmenu" style="position: relative;">
<div id="menu">
<%= render "layouts/navibar" %>
</div>
<div id="style_switch">
<%= render 'layouts/themebar' %>
</div>
<ul class="s_clear"><li style="display:none"><!--<a id="prompt_pm" href="pm.php?filter=newpm" target="_blank">private (0)</a> TODO--></li><li style="display:none"><a id="prompt_announcepm" href="pm.php?filter=announcepm" target="_blank">public (0)</a></li><li style="display:none"><a id="prompt_systempm" href="notice.php?filter=systempm" target="_blank">system (0)</a></li><li style="display:none"><a id="prompt_friend" href="notice.php?filter=friend" target="_blank">friend (0)</a></li><li style="display:none"><a id="prompt_threads" href="notice.php?filter=threads" target="_blank">post (0)</a></li></ul>
</div>
</div>
</div>
</div>
<div id="myprompt_menu" style="display:none" class="promptmenu">
<div class="promptcontent">
<ul class="s_clear"><li style="display:none"><!--<a id="prompt_pm" href="pm.php?filter=newpm" target="_blank">private (0)</a> TODO--></li><li style="display:none"><a id="prompt_announcepm" href="pm.php?filter=announcepm" target="_blank">public (0)</a></li><li style="display:none"><a id="prompt_systempm" href="notice.php?filter=systempm" target="_blank">system (0)</a></li><li style="display:none"><a id="prompt_friend" href="notice.php?filter=friend" target="_blank">friend (0)</a></li><li style="display:none"><a id="prompt_threads" href="notice.php?filter=threads" target="_blank">post (0)</a></li></ul>
</div>
</div>
</div>
<div id="nav">
<%= render 'layouts/actionbar' %>
<%= render 'layouts/actionbar' %>
</div>
<div id="ad_text"></div>
\ No newline at end of file
<div id="wrapper">
<ul class="popupmenu_popup headermenu_popup inlinelist" id="modopt_menu" style="width: 180px; display: none"><li class="wide"><a href="javascript:;" onclick="modthreads(3, 'delete')">删除主题</a></li><li class="wide"><a href="javascript:;" onclick="modthreads(3, 'down')">提升下沉</a></li><li class="wide"><a href="javascript:;" onclick="modthreads(1, 'stick')">主题置顶</a></li><li class="wide"><a href="javascript:;" onclick="modthreads(1, 'highlight')">高亮显示</a></li><li class="wide"><a href="javascript:;" onclick="modthreads(1, 'digest')">设置精华</a></li><li class="wide"><a href="javascript:;" onclick="modaction('stamp')">主题鉴定</a></li><li class="wide"><a href="javascript:;" onclick="modthreads(4)">关闭打开</a></li><li class="wide"><a href="javascript:;" onclick="modthreads(2, 'move')">移动主题</a></li><li class="wide"><a href="javascript:;" onclick="modthreads(2, 'type')">主题分类</a></li><li class="wide"><a href="javascript:;" onclick="modaction('copy')">复制主题</a></li><li class="wide"><a href="javascript:;" onclick="modaction('merge')">合并主题</a></li><li class="wide"><a href="javascript:;" onclick="modaction('split')">分割主题</a></li><li class="wide"><a href="javascript:;" onclick="modaction('repair')">修复主题</a></li><li class="wide"><a href="plugin.php?id=dps_postawards:postawards&amp;tid=29727" onclick="showWindow('paward', this.href);return false;">楼层奖惩</a></li></ul>
<div id="modlayer" style="display:none;position:position;width:165px;">
<span>选中</span><strong id="modcount"></strong><span>篇: </span>
......@@ -226,4 +225,3 @@
<div id="ad_footerbanner1"></div><div id="ad_footerbanner2"></div><div id="ad_footerbanner3"></div>
<script>$('umenu').innerHTML = '<span id="myrepeats" onmouseover="showMenu(this.id)">[切换]</span>' + $('umenu').innerHTML;</script><ul id="myrepeats_menu" class="popupmenu_popup" style="display:none;"><li class="wide"><a href="plugin.php?id=myrepeats:switch&amp;username=%B2%A4%C2%DC%B0%FC">菠萝包</a></li><li class="wide" style="clear:both"><a href="plugin.php?id=myrepeats:memcp">设置马甲</a></li></ul></div>
</div>
\ No newline at end of file
......@@ -36,6 +36,8 @@ zh-CN:
submit: "提交"
topic: "主题"
post: "回复"
none: "从未"
subboard: "子版快"
search:
search: "搜索"
advanced: "高级搜索"
......
class CreateBoards < ActiveRecord::Migration
def self.up
drop_table :boards if self.table_exists?(:boards)
create_table :boards do |t|
t.string :name, :default => '', :null => false
t.references :superboard, :null => false
t.integer :displayorder, :default => '0', :null => false
t.text :introduction, :default => '', :null => false
t.text :notice, :default => '', :null => false
t.string :logo, :default => '', :null => false
......@@ -9,7 +13,7 @@ class CreateBoards < ActiveRecord::Migration
t.integer :readperm, :default => 0, :null => false
t.integer :topicperm, :default => 0, :null => false
t.integer :postperm, :default => 0, :null => false
#t.reference :
t.timestamps
end
......
class DemoData < ActiveRecord::Migration
def self.up
Board.create :id => 1,
:superboard_id => 0,
:name => "综合讨论中心"
Board.create :id => 2,
:superboard_id => 1,
:name => "测试版块",
:introduction => "版块简介",
:notice => "版块公告",
:logo => "http://bbs.66rpg.com/data/attachment/common/skin/VX.png",
:banner => "http://ftp.66rpg.com/WEB_PLUS/attachment/forum/201104/24/221009dzbmkp6666pp3mue.jpg"
end
def self.down
end
end
......@@ -10,17 +10,18 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20111036031160) do
ActiveRecord::Schema.define(:version => 20111042572025) do
create_table "boards", :force => true do |t|
t.string "name", :default => "", :null => false
t.text "introduction", :null => false
t.text "notice", :null => false
t.string "logo", :default => "", :null => false
t.string "banner", :default => "", :null => false
t.integer "readperm", :default => 0, :null => false
t.integer "topicperm", :default => 0, :null => false
t.integer "postperm", :default => 0, :null => false
t.string "name", :default => "", :null => false
t.text "introduction", :null => false
t.text "notice", :null => false
t.string "logo", :default => "", :null => false
t.string "banner", :default => "", :null => false
t.integer "readperm", :default => 0, :null => false
t.integer "topicperm", :default => 0, :null => false
t.integer "postperm", :default => 0, :null => false
t.integer "superboard_id", :null => false
t.datetime "created_at"
t.datetime "updated_at"
end
......
This source diff could not be displayed because it is too large. You can view the blob instead.
*{word-wrap:break-word;}html,body{border:0 !important;}body{background:#EBEBEB url("/images/common/bodybg.gif") repeat-x 0 90px;text-align:center;}body,td,input,textarea,select,button{color:#444;font:12px/1.6em Verdana,Helvetica,Arial,sans-serif;}input,select,button{vertical-align:middle;}textarea{resize:none;}body,ul,li,dl,dd,p,h1,h2,h3,h4,h5,h6,form,fieldset{margin:0;padding:0;}h1,h2,h3,h4,h5,h6{font-size:1em;}ul li{list-style:none;}a{text-decoration:none;color:#000;}a:hover{text-decoration:underline;}.lightlink,.lightlink a{color:#09C;}a img{border:none;}em,cite,strong,th{text-align:left;font-style:normal;}.emfont{color:#F60;}table{empty-cells:show;border-collapse:collapse;}th{font-weight:400;}.txt,.txtarea{padding:2px;*padding:0 2px;height:16px;*height:20px;border:1px solid;border-color:#999 #CCC #CCC #999;background:#FFF;}.txtarea{height:auto;}.checkbox,.radio{margin:0;width:15px;}.pipe{margin:0 5px;}.lighttxt,.lighttxt a,.pipe{color:#999;}.smalltext{font-size:0.83em;font-family:Verdana,Helvetica,Arial,sans-serif;}.noborder,.noborder td{border:none !important;}.nobg{background:none !important;}.right{float:right;}.left{float:left;}.onerror,.onright{clear:both;padding:2px 2px 2px 22px;background:url(/images/check_error.gif) no-repeat 2px 2px;}.onright{background:url(/images/check_right.gif) no-repeat 2px 2px;}.notice{clear:both;margin:5px 0;padding:3px 5px 3px 20px;background:url(/images/common/notice.gif) no-repeat 2px 6px;}.nodata{margin:99px auto;text-align:center;color:#999;font-size:16px;font-weight:700;}#ajaxwaitid{display:none;position:absolute;z-index:100;top:0;right:0;width:100px;height:1.6em;background:#D00;line-height:1.6em;color:#FFF;overflow:hidden;}#checksecanswer img,#checksecanswer3 img,#checkseccodeverify img,#checkseccodeverify3 img,.warning img{vertical-align:middle;}.s_clear:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.s_clear{zoom:1;}hr{clear:both;margin:1em 0;border:0 solid #E6E7E1;background:transparent;}.solidline{border-top:1px solid #FFF;border-bottom-width:1px;}.dashline{height:0px;border-bottom-width:1px;border-style:dashed;}.shadowline{*margin:2px 0;border-width:1px 0;border-top-color:#C8DCEC;border-bottom-color:#FFF;}.side .shadowline{margin:5px 0;*margin:2px 0;}.cornerlayger{padding:6px 8px;border:1px solid #09C;background:#EBF2F8;line-height:1.6em;}.minicorner{margin-top:-1px;height:6px;background:url(/images/common/attachinfobg.gif) no-repeat 50% 0;}.wrap{text-align:left;margin:0 auto;}#wrap{padding-bottom:10px;min-height:450px;border:0 solid #00B2E8;background-color:#FFF;clear:both;}* html #wrap{height:450px;}.wrap,#nav{width:1024px;}#header{margin-bottom:8px;min-width:1024px;width:100%;border-bottom:1px solid #00B2E8;background:#00A2D2 url("/images/common/header.gif") repeat-x 0 100%;}#header .wrap{position:relative;padding:24px 0 22px;}#header h2{float:left;}#umenu{position:absolute;right:0;top:0;line-height:20px;}#umenu a{margin:0 6px;}#umenu cite{font-weight:700;}#umenu cite span a{margin:0;font-weight:400;}#myprompt.new{padding-left:22px;background:url(/images/common/notice_newpm.gif) no-repeat 0 50%;}#myprompt_menu a.new{color:#F60;}#myprompt_menu li{float:left;width:50%;}.promptmenu{margin-left:-27px;padding-top:10px;width:250px;background:transparent url(/images/common/pm_ntc.gif) no-repeat 0 0;text-align:left;opacity:0.98;}.promptcontent{padding-bottom:10px;background:transparent url(/images/common/pm_ntc.gif) no-repeat -250px 100%;}.promptmenu ul{padding:0 10px;border:solid #91C8E2;border-width:0 2px;background:#FEFEFE;}.promptmenu li{border-bottom:1px solid #F4F4F4;line-height:29px;display:block;width:100%;color:#999;overflow:hidden;text-overflow:ellipsis;-webkit-text-overflow:ellipsis;-moz-text-overflow:ellipsis;-o-text-overflow:ellipsis;}.promptmenu a:hover{text-decoration:none;color:#09C;}.up{padding-top:0;padding-bottom:10px;width:150px;background-position:-500px 100%;}.up .promptcontent{padding-top:5px;padding-bottom:0;background-position:-650px 0;}.up li{border-bottom:none;line-height:160%;}#uchome_ntc{padding:1px 10px 3px 15px;*padding:2px 10px 2px 15px;background:url(/images/common/notify_bg_m.gif) no-repeat 0 50%;color:#FFF !important;}#uchome_ntc a{margin:0;}#umenu,#umenu a,#umenu .pipe{color:#97F2FF;}#footer{padding:1em 0;}#rightinfo{float:left;}#footlink{float:right;text-align:right;}#footer,#footer a{color:#8691A2;}.content{padding:20px 25px;}.content h1{margin-bottom:10px;font-size:16px;font-weight:400;}#menu{position:absolute;right:0;bottom:0;_bottom:-2px;height:26px;}#menu li{display:inline;float:left;margin-left:5px;;}#menu a{float:left;padding:0 14px;height:25px;border:solid #B0E4EF;border-width:1px 1px 0;background:transparent none;line-height:25px;color:#FFF;text-decoration:none;overflow:hidden;}#menu a.dropmenu{padding-right:20px;background-image:url(/images/common/arrow_down.gif);background-repeat:no-repeat;background-position:95% 50%;}#menu a:hover{border-color:#00B2E8;background-color:;color:#333;}#menu li.current a{height:26px;border-color:#00B2E8;background-color:;color:#333;}#nav{margin:-8px auto 0;background:url(/images/common/icon_nav.gif) no-repeat 0 50%;text-align:left;text-indent:25px;line-height:3em;}#nav,#nav a{color:#333;}.mainbox table{width:100%;}.blocktitle{margin-bottom:0.5em;font-size:16px;font-weight:700;}.channelinfo{clear:both;margin:5px 0;color:#666;}.channelinfo img{vertical-align:middle;}.channelinfo .onerror{* background-position:2px 0;}.pages_btns{padding:5px 0 1em;line-height:30px;}.pages,.pageback{float:right;padding:2px 0;}.pages a,.pages strong,.pageback a{float:left;padding:0 6px;margin-right:2px;height:26px;border:1px solid;line-height:26px;overflow:hidden;}.pages a,.pageback a{border-color:#E6E7E1;background-color:#FFF;color:#09C;}.pages a:hover,.pageback a:hover{text-decoration:none;}.pages strong{border-color:#09C;background-color:#09C;color:#FFF;font-weight:700;}.pages a.prev,.pages a.next{background-repeat:no-repeat;}.pages a.prev{background-image:url(/images/common/arrow_left.gif);background-position:30% 50%;padding:0;width:22px;overflow:hidden;text-indent:-9999px;}.pages a.next{padding-right:16px;background-image:url(/images/common/arrow_right.gif);background-position:90% 50%;}.pageback a{padding-left:16px;background:#FFF url(/images/common/arrow_left.gif) no-repeat 0 50%;}.pages a:hover,.pageback a,.pages a.next{border-color:#09C;}.formtable{width:100%;}.formtable th{padding:5px 2px;width:100px;}.formtable th a{font-weight:400;color:#09C;text-decoration:underline;}.formtable td{padding:5px 2px;}.formtable .sep_space th{height:40px;}.formtable .txt{width:270px;}.formtable .txtarea{float:left;margin:-1px 8px 0 0;width:270px;height:60px;border-top-color:#CCC;}.float_typeid{float:left;margin-right:6px;}.float_typeid select{float:left;height:20px;}.float_typeid a{display:block;overflow:hidden;padding:0 17px 0 4px;width:73px;height:20px;text-decoration:none !important;color:#444 !important;border:1px solid;border-color:#999 #CCC #CCC #999;background:#FFF url(/images/common/newarow.gif) no-repeat 100% 0;}* html .float_typeid a{height:18px;padding-top:2px;}.float_typeid a:hover,.float_typeid a:focus{border:1px solid #09C;background-position:100% -20px;}.float_typeid select{width:94px;}.short_select a{width:39px;}.short_select select{width:60px;}.select_menu{border:1px solid #09C;background:#FFF url(/images/common/newarow.gif) no-repeat 100% -20px;text-align:left;}.select_menu ul{margin:0 4px;}.select_menu li{color:#444;cursor:pointer;}.select_menu li:hover{color:#09C;}.select_menu li.current{color:#F60;}.commonlist li{margin:4px 0;}.inlinelist li{float:left;width:33%;}.inlinelist li.wide{width:49.5%;}.datalist{zoom:1;}.datalist table{margin-bottom:30px;width:100%;border:1px solid #E6E7E1;}.datalist th,.datalist td{padding:4px 5px;border:1px solid #E6E7E1;font-weight:400;}.datalist th img{vertical-align:top;}.datalist table .stat_subject{border-right:none;}.datalist table .stat_num{padding-right:15px;text-align:right;border-left:none;}.datalist .datatable{margin-bottom:10px;}.datalist .datatable,.datalist .datatable th,.datalist .datatable td{border-width:1px 0;}.datalist .fixtable{table-layout:fixed;}.colplural,.colplural th,.colplural td,th.highlight,td.highlight{background-color:#F5F5F5;}.avt_list li{float:left;margin-right:9px;width:64px;height:54px;text-align:center;}.side .avt_list li{margin:0;width:33.3%}.postmessage .avt_list li{height:70px;}.avt_uname li{height:80px;}.avt_list img{display:block;margin:0 auto;}.avt_list p{width:96%;white-space:nowrap;overflow:hidden;}.avt_list .cornerlayger p{white-space:normal;text-align:left;}.avt_list .minicorner{background:url(/images/common/attachinfobg.gif) no-repeat -30px 0;}.avt_title{margin:8px;}.list{border-top:3px solid #E6E7E1;}.content .list h3{padding-left:6px;color:#666;line-height:35px;}.list td,.list th{height:50px;padding:6px 0;border-top:1px dashed #E6E7E1;color:#666;}.list th{background:url(/images/common/forum.gif) 5px 10px no-repeat;padding-left:45px !important;}.narrowlist th{vertical-align:top;}.list th.new{background-image:url(/images/common/forum_new.gif);}.list th h2 em{font-weight:400;}.list th h2 em strong{color:#F60}.feed{margin-bottom:10px;}.feed h3{margin:10px 0 10px 30px;font-size:14px;color:#999;}.feed a{color:#09C;}.feed li{border-bottom:1px dashed #E6E7E1;}.feed div{padding:10px 30px;background:url(/images/common/alert.gif) no-repeat 0 12px;position:relative;}.feed div div{padding:0;background:none;}.feed .f_icon{background:none;}.feed .apptype{position:absolute;float:left;display:inline;margin:3px 0 0 -30px;}.feed .f_thread{background-image:url(/images/common/folder_new.gif);}.feed .f_reply{background-image:url(/images/topic/fastreply.gif);}.feed .f_quote{background-image:url(/images/topic/repquote.gif);}.feed .f_buddy{background-image:url(/images/common/user_link.gif);}.feed .f_pin{background-image:url(/images/common/pin_1.gif);background-position:0 9px;}.feed .f_digest{background-image:url(/images/common/digest_1.gif);}.feed .f_rate{background-image:url(/images/common/agree.gif);}.feed .f_manage{background-image:url(/images/common/icon_manage.gif);}.feed .f_magic{background-image:url(/images/common/magic.gif);}.feed .f_trade{background-image:url(/images/common/tradesmall.gif);}.feed .f_activity{background-image:url(/images/common/activitysmall.gif);}.feed .f_reward{background-image:url(/images/common/rewardsmall.gif);}.feed .f_task{background-image:url(/images/common/icon_task.gif);background-position:0 14px;}.feed .f_credit{background-image:url(/images/common/viewpay.gif);}.feed dfn{position:absolute;right:0;top:14px;*top:12px;font-style:normal;}.feed dfn .deloption{float:right;margin:0;}.feed em,.feed em a,.feed .summary{color:#999;}.feed .summary{margin:12px 2em 6px;}.feed dt{float:left;color:#444;}.feed dd{margin-bottom:6px;}.feed .il{margin-left:2em;white-space:nowrap;}a.to{padding-right:1em;background:url(/images/common/arrow_right.gif) no-repeat 100% 50%;}.feed i{margin:0 5px;color:#999;}.f_thumb{margin:5px 0;}.f_thumb img{margin-right:4px;padding:2px;max-width:100px;max-height:70px;border:1px solid #E6E7E1}* html .f_thumb img{width:100px;height:70px;}.feed fieldset{margin:10px 0;padding:0 0 0 20px;border:none;background:url(/images/common/icon_quote_m_s.gif) no-repeat 0 0;}.feed ins{margin:0;padding:0 20px 0 0;display:inline;background:url(/images/common/icon_quote_m_e.gif) no-repeat 100% 100%;line-height:1.6em;color:#999;text-decoration:none;}.folder{width:25px;text-align:center;}td.icon{width:20px;text-align:center;}.icon .solved{filter:alpha(opacity=30);opacity:0.3;}.subject label{float:right;}.threadlist th a:hover,.subject a:hover{color:#09C;}.datatable .subject{padding:8px 5px;}.threadpages{white-space:nowrap;}.threadpages a{padding:2px 4px;color:#444;}.threadpages a:hover{background-color:#EBF2F8;}.forum,.author,.lastpost{width:110px;}.lastpost,.lastpost cite,.lastpost em{text-align:right;}.author cite,.lastpost cite{display:block;margin-bottom:-5px;width:105px;height:1.6em;overflow:hidden;}thead .lastpost cite{margin-bottom:0;}.author em,.lastpost em,.lastpost em a{font-size:9px;font-family:Arial,sans-serif;color:#999;}.lastpost cite,.lastpost em{display:block;margin-right:5px;}.nums{width:80px;color:#999;text-align:center;}thead .nums{color:#444;}.nums strong{padding-right:2px;color:#09C;font-weight:400;}.nums em{padding-left:2px;color:#444;}.forumnums{width:90px;padding-right:10px !important;color:#999;text-align:center;}.forumnums em{color:#09C;}.forumlast{width:225px;text-align:left;}.num{width:120px;text-align:center;color:red;}.threadlist td{padding:0 !important;}.threadlist .colplural th,.threadlist .colplural td{padding:7px 0 !important;background:#EBF2F8;}.threadlist .colplural th{padding:7px 5px !important;}.threadlist .colplural a{color:#09C;font-family:Tahoma,sans-serif;}.threadlist .colplural a:hover{text-decoration:underline;}.threadlist .colplural .order_active{padding-right:8px;background:url(/images/common/order.gif) no-repeat 100% 50%;}.itemfilter{line-height:18px;}.itemfilter *{float:left;height:18px;overflow:hidden;}.itemfilter li{margin-right:5px;}.itemfilter .current a{margin-right:2px;background:url(/images/common/btn_block.gif) no-repeat 0 -161px;}.itemfilter .current a:hover{text-decoration:none;}.itemfilter span{cursor:pointer;}.itemfilter .current span{padding:0 5px;background:url(/images/common/btn_block.gif) no-repeat 100% -179px;color:#FFF;}.threadlist th em{margin-right:4px;}.threadlist th em,.threadlist th em a{color:#09C;}.threadlist th .attach{vertical-align:middle;}* html .threadlist th .attach{vertical-align:baseline;}.threadlist th a{text-decoration:none;}.dropmenu{padding-right:15px;background:url(/images/common/arrow_down.gif) 100% 50% no-repeat;cursor:pointer;}.popupmenu_popup{overflow:hidden;padding:10px;text-align:left;border:1px solid #CBD8E4;background:#FEFEFE;}.popupmenu_popup li{margin:3px 0;line-height:20px;}.headermenu_popup{width:100px;}.headermenu_popup li{width:100px;border-bottom:1px solid #E6E7E1;}.headermenu_popup a:hover{text-decoration:none;color:#09C;}.headermenu_popup .active{font-weight:700;}.titlemenu_popup{padding:0;}.titlemenu_popup li{margin:0;}.titlemenu_popup a{display:block;padding:3px 8px;}* html .titlemenu_popup a{display:inline-block;}.titlemenu_popup .current a{background:#F1F5FA;}.filter_popup{width:5em;}.filter_popup li{width:60px;}.showselect_menu{margin-bottom:0.8em;padding:5px;text-align:left;border:1px solid #CBD8E4;background:#FEFEFE;}.headactions .popupmenu_popup a,.headactions .popupmenu_popup strong{color:#666;background:none;white-space:nowrap;}.headactions .popupmenu_popup{overflow:visible;}.hasdropdownbtn{}.hasdropdownbtn input{float:left;width:129px;}.hasdropdownbtn .spmediuminput{width:115px;}.dropdownbtn{float:left;overflow:hidden;text-indent:-9999px;width:20px;height:20px;border-width:1px 1px 1px 0;border-style:solid;border-color:#999 #CCC #CCC #999;background:#FFF url(/images/common/newarow.gif) no-repeat 0 0;}.dropdownbtn:hover{background-position:0 -20px;}#style_switch{position:absolute;right:0px;bottom:-25px;}#style_switch li{float:left;padding-left:5px;}#style_switch a{float:left;width:8px;height:8px;border:1px solid #DDD;background:#FFF;line-height:100px;overflow:hidden;}#style_switch a:hover,#style_switch .current a{border-color:#FFF;}#style_switch .current a{margin-top:-1px;border-width:2px;}#ad_headerbanner{float:right;margin:5px 0 10px;}.ad_text{margin:0 auto 5px;padding:10px 0;width:1024px;background:#FFF;}.ad_text table{width:100%;}.ad_text td{padding:3px 20px;text-align:left;}.ad_textlink1,.ad_textlink2{margin:10px 0;padding-left:20px;background:url(/images/common/icon_ad.gif) no-repeat 0 50%;}.ad_pip{clear:right;float:right;padding:10px;background:#FFF;color:#999;line-height:130%;}.ad_pip li{margin-bottom:1em;}.ad_pip a{color:#09C;}.ad_topicrelated{clear:both;float:right;display:inline;margin:0 10px 10px;padding:10px 10px 10px 30px;border:1px solid #78A73D;background:#CAEEC0;}.ad_column{text-align:center;}.ad_footerbanner{text-align:center;clear:both;margin:5px;}.ad_float_left,.ad_float_right{float:right;position:fixed;top:350px;z-index:300;}* html .ad_float_left,* html .ad_float_right{position:absolute;top:expression(offsetParent.scrollTop+350);}.ad_float_left{left:5px;}.ad_float_right{right:5px;}.ad_couplebanner{top:5px}* html .ad_couplebanner{top:expression(offsetParent.scrollTop+5);}.headactions{float:right;line-height:1em;padding:12px 0 0;}.headactions img{vertical-align:middle;cursor:pointer;padding:0 5px;}.headactions a{margin-left:4px;}.mainbox .headactions{color:#999;}.mainbox .headactions strong{font-weight:700;}.msgfix{overflow:hidden;}.side{width:170px;}.postauthor .avatar img{background:url(/images/common/midavt_shadow.gif) repeat-x scroll 0 100% #FFFFFF;padding:5px 5px 8px;max-height:160px;max-width:130px;}.sideinner .txt{margin:6px 0;}.side li.current a{font-weight:700;color:#444;text-decoration:none;}.with_side{background:#FFF url("/images/common/sidebg.gif") repeat-y 100% 0;}.with_side .main{float:left;overflow:hidden;margin-left:-180px;width:100%;}.with_side .content{margin-left:180px;width:auto;}.with_side .side{float:right;padding-bottom:20px;width:180px;}.with_side .side h2{margin:20px 25px 10px;color:#999;font-size:14px;}.with_side .side a{color:#09C;text-decoration:underline;}.sideinner{padding:0 25px;}.sideinner .tabs{margin:5px 0;}.sideinner .tabs li{line-height:2em;}.numbg{float:right;text-align:center;width:35px;height:2em;background:url(/images/common/numbg.gif) no-repeat 0 50%;color:#FFF;font-weight:700;}.special{background:none;}.special .main{float:right;}.special .side{float:left;}.sidebox{overflow:hidden;margin:5px 10px 10px;}.sidebox h4{margin-bottom:4px;color:#09C;}.fwinmask{}.fwin{overflow-x:hidden;margin:0 auto;text-align:left;}.t_l,.t_c,.t_r,.m_l,.m_r,.b_l,.b_c,.b_r{overflow:hidden;opacity:0.9;filter:alpha(opacity=90);background:#CBD8E4;}.t_l,.t_r,.b_l,.b_r{width:8px;height:8px;}.t_c,.b_c{height:8px;}.m_l,.m_r{width:8px;}.m_c{background:#F1F5FA;}.fcontent{margin:15px;}.float_ctrl{margin-bottom:15px;height:20px;line-height:20px;}.float_ctrl em{float:left;font-size:14px;font-weight:700;color:#09C;}.float_ctrl em a{text-decoration:none;}.float_ctrl .needverify{margin-left:8px;padding-left:13px;width:45px;height:21px;line-height:21px;background:url(/images/common/re_unsolved.gif) no-repeat 0 0;font-size:12px;color:#666;font-weight:400;}.float_ctrl .onerror,.float_ctrl .onright{white-space:nowrap;height:auto;line-height:140%;color:#444;font-size:12px;font-weight:400;}.float_ctrl span{float:right;color:#999;}.float_ctrl span a,.float_ctrl strong{float:left;text-decoration:none;margin-left:8px;font-weight:400;color:#444;}.float_ctrl span a:hover{color:#999;}.float_close{float:left;width:20px;height:20px;overflow:hidden;text-indent:-9999px;background:url(/images/common/newclose.gif) no-repeat 0 0;}.float_close:hover{background-position:0 -20px;}.floatwrap{overflow:auto;overflow-x:hidden;margin-bottom:10px;height:280px;}.fcontent li{list-style:none;}.fcontent a{color:#09C;text-decoration:underline;}.fcontent .list{margin:0 auto;width:570px;border-top:3px solid #E6E7E1;border-bottom:3px solid #E6E7E1;}.fcontent .list th,.fcontent .list td{padding:3px !important;height:auto;border-bottom:1px dashed #E6E7E1;}.fcontent .list .btns th,.fcontent .list .btns td{border-bottom:none;}.fcontent .list th{width:150px;background:none;}.postbox{clear:both;}.moreconf{margin-top:10px;}.moreconf button,.moreconf a{margin-right:3px;}.loginform{float:left;margin-bottom:10px;*margin-bottom:-10px;padding:20px 0;width:280px;border-right:1px solid #D3E8F2;}.regsec{margin-bottom:10px;}.channelinfo .onerror,.channelinfo .onright{background-position:2px 0;}.loginform label{clear:both;overflow:hidden;display:block;margin:0 0 10px;line-height:22px;}.loginform .txt{width:170px;}.loginform select{width:175px;}.fsubmit{clear:both;margin-top:8px;}.fsubmit .submit{margin-right:8px;}.loginform label em,.fsubmit em{float:left;width:60px;}.fsubmit .regpre{*margin-top:4px;}.nolabelform .txt{width:230px;}.clause{overflow:auto;margin-bottom:10px;width:470px;height:240px;}.selectinput{float:none;margin:0 0 10px;width:234px;height:20px;background-color:#FFF;border:1px solid;border-color:#999 #CCC #CCC #999;}.selectinput a{float:left;padding-right:0;width:61px;border:none;}.selectinput a:hover,.selectinput a:focus{border:none;}.selectinput .txt{float:left;width:160px;border:none;}.selecttype{float:none;margin:10px 0;clear:both;}.selecttype a,.selecttype a:hover,.selecttype a:focus{padding-right:0;width:230px;background-color:transparent;border-color:#F1F5FA;color:#999 !important;}.loginpsw label{float:left;padding-left:4px;width:61px;line-height:150%;}.capslock{background:url(/images/common/capslock.gif) no-repeat 98% 50%;}.logininfo{float:left;overflow:visible;margin:87px 25px 10px 40px;}.logininfo h4{margin-bottom:10px;font-weight:400;font-size:14px;}.multinfo{margin-top:53px;}.switchnav{float:left;white-space:nowrap;overflow:hidden;width:480px;}.postboardlist{overflow:hidden;margin:9px 0;width:597px;border-width:1px 0 1px 1px;border-style:solid;border-color:#CBD8E4;background:#FFF;}.postboardlist li{float:left;overflow-x:hidden;overflow-y:auto;padding:5px;width:188px;height:300px;border-right:1px solid #CBD8E4;}.postboardlist p{height:25px;line-height:25px;}.postboardlist a{display:block;white-space:nowrap;overflow:hidden;padding:0 4px;text-decoration:none;color:#444;}.postboardlist a:hover{text-decoration:none;background-color:#F5F5F5;}.postboardlist .highlightlink{color:#09C;}.hassubboard{background:url(/images/common/arrow_right.gif) right center no-repeat;}.pbl_selected a,.pbl_selected a:hover{background-color:#09C;color:#FFF !important;font-weight:700;}.nofloat{height:auto !important;height:410px;min-height:410px;background-color:#EBF2F8;}.nofloat .fcontent{margin:15px auto;width:600px;}.nofloat .loginform{height:auto;}.nofloat .clause{width:auto;height:auto;}.fcontent .float_postinfo{width:568px;}.c_header{overflow:hidden;margin-bottom:10px;}* html .c_header{zoom:1;}.c_header h2,.c_header h3{float:left;padding-right:15px;background:#FFF;font-size:14px;cursor:pointer;}.c_header h3{background:#FFF url(/images/common/arrow_down_big.gif) no-repeat 100% 5px;color:#09C;}.searchfaq h3{background:none;cursor:auto;}.c_header .noarrow{background:none;cursor:auto;}.c_header h3 a{color:#09C;}.c_header h3 span{font-size:12px;font-weight:400;color:#666;}.c_header h2 em,.c_header h3 em{margin-left:8px;font-size:12px;color:#999;font-weight:400;}.c_header_action{float:right;}.c_header .c_header_ctrlbtn{display:none;}.c_header .c_header_ext{display:block;}.closenode{background:url(/images/common/dashline.gif) repeat-x 0 10px;}.closenode h3{background-image:url(/images/common/arrow_right_big.gif);}.closenode .c_header_ctrlbtn{display:block;background-color:#FFF;color:#666;cursor:pointer;}.closenode .c_header_ext{display:none;}.itemtitle{clear:both;overflow:hidden;margin-bottom:10px;line-height:23px;}.itemtitle h1{float:left;margin:0 20px 0 0;}.itemtitle ul{float:left;}.itemtitle li{float:left;margin-right:5px;}.itemtitle li.pipe{margin-left:0;}.itemtitle ul a{display:block;overflow:hidden;height:23px;cursor:pointer;}* html .itemtitle ul a{float:left;}.itemtitle ul a span{display:block;padding:0 7px;*padding:1px 7px 0;*line-height:22px;}.itemtitle ul a:hover{background:#F5F5F5 url(/images/common/btn_block.gif) no-repeat 0 -46px;text-decoration:none;}.itemtitle ul a:hover span{background:url(/images/common/btn_block.gif) no-repeat 100% -69px;}.itemtitle ul a.dropmenu{padding-right:0;background-position:0 -161px;}.itemtitle ul a.dropmenu span{padding-right:12px;background:url(/images/common/btn_block.gif) no-repeat 100% -138px;}.itemtitle ul a.dropmenu:hover{background-position:0 -46px;}.itemtitle ul a.dropmenu:hover span{background-position:100% -115px;}.itemtitle ul .current a,.itemtitle ul .current a:hover,.itemtitle ul .current a.dropmenu:hover{background:#09C url(/images/common/btn_block.gif) no-repeat 0 0;}.itemtitle ul .current a span,.itemtitle ul .current a:hover span{background:url(/images/common/btn_block.gif) no-repeat 100% -23px;color:#FFF;}.itemtitle ul .current a.dropmenu span,.itemtitle ul .current a.dropmenu:hover span{background-position:100% -92px;}.float_postinfo{}.float_postinfo em{float:left;margin-right:5px;padding-left:3px;height:20px;border:1px solid;border-color:#999 #CCC #CCC #999;background-color:#FFF;cursor:pointer;}.float_postinfo em img{margin-top:2px;}.float_postinfo input{float:left;}.float_postinfo #subject{width:358px;}.float_postinfo .float_typeid{display:inline;margin-right:0;margin-left:6px;}.viewpoint{margin:9px 0;}.colorbox input{margin:2px;padding:0px;float:left;cursor:pointer;width:12px;height:12px;border:0;}.smilieslist{padding:10px;border:1px solid #CBD8E4;background:#FEFEFE;}.smilieslist td{padding:8px;border:none;cursor:pointer;}.smilieslist_page{*float:left;text-align:right;}.smilieslist_page a{margin-right:5px;color:#09C;text-decoration:underline;}.pags_act{float:left;}.smilies_preview{margin-top:5px;padding:8px;background:#FFF;border:1px solid #CBD8E4;}.smiliesgroup{height:33px;*height:34px;overflow:hidden;width:expression(this.parentNode.offsetWidth);}.smiliesgroup ul,.imguptype{margin:6px 0;padding:0 0 26px 8px;border-bottom:1px solid #D3E8F2;}.smiliesgroup li,.imguptype li{display:inline;}* html .smiliesgroup li,* html .imguptype li{line-height:18px;}.smiliesgroup li a,.imguptype li a{float:left;margin:2px 6px 0 0;padding:2px 10px;height:19px;border:1px solid #D3E8F2;color:#09C;text-decoration:none;}.smiliesgroup li a:focus,.imguptype li a:focus{outline:none;}.smiliesgroup li a.current,.imguptype li a.current{border-bottom-color:#FEFEFE;font-weight:700;color:#444;}.alert_win{margin:0;width:350px;}.alert_win .float_ctrl{margin-bottom:0;padding:8px;}.alert_win .shadowline{margin:0;*margin:-8px 0;}.alert_win .postbox{*margin-top:-15px;padding:15px;}.alert_right,.alert_error,.alert_info{padding:6px 0 6px 58px;line-height:160%;background:url(/images/common/right_big.gif) no-repeat 8px 50%;font-size:14px;}.alert_error{background-image:url(/images/common/error_big.gif);}.alert_info{background-image:url(/images/common/info_big.gif);}.alert_btnleft{margin-top:8px;}.alert_btn{margin-top:20px;text-align:center;}.alert_act{margin-top:20px;padding-left:58px;}.popupcredit{}.pc_l,.pc_c,.pc_inner,.pc_r{width:29px;height:56px;line-height:56px;background:url(/images/common/popupcredit_bg.gif) no-repeat 0 0;}.pc_c{width:200px;background-position:0 -56px;background-repeat:repeat-x;}.pc_inner{white-space:nowrap;text-align:center;width:auto;background-position:50% -112px;}.pc_inner span{margin-right:15px;color:#FFEA97;font-size:14px;font-weight:700;}* html .pc_inner span{display:inline-block;}.pc_inner span a{color:#FFEA97;text-decoration:underline;}.pc_inner span em{color:#FFF;font-size:18px;font-weight:400;}.pc_inner span em.desc{color:#930;}.pc_btn img{opacity:0.5;}.pc_btn:hover img{opacity:1;}.pc_r{background-position:-30px 0;}.optionbar{float:left;overflow:hidden;margin:3px 4px 0 -6px;background:#09C url(/images/common/header.gif) repeat-x;height:14px;}.deloption{float:left;margin:4px;width:12px;height:12px;background:url(/images/common/close.gif) no-repeat 0 0;overflow:hidden;text-indent:-9999px;}.deloption:hover{background-position:0 -12px;}.color_menu{overflow:hidden;width:63px;}.color_menu a{overflow:hidden;float:left;width:20px;height:20px;}.chosemagic{margin-bottom:9px;width:220px;}.topicadminhigh{height:200px;}.topicadminhigh .tah_body{margin:5px 0 15px;}.topicadminhigh .tah_body select{width:217px;}.topicadminlow{height:50px;}.topicadminlow table{width:100%;}.topicadminlow td{padding:0 5px;}.topicadminlow .txt{width:100px;}.topicadminlow .wide .txt{width:50px;}.topicadminlog{}.topicadminlog h4{font-weight:400;}.topicadminlog .dropdownbtn{border-left-width:1px;}.topicadminlog .txtarea{margin:5px 0;width:212px;height:40px;}body{font-size:12px;color:#555;font-family:Arial,Tahoma,Verdana,Serif;padding:0;height:100%;margin:0;background:#ebebeb;}table,tr,td{font-family:Tahoma,Verdana,Georgia,Simsun,Serif;font-size:12px;background-color:inherit;color:#666;}em,cite,strong,th{font-style:normal;font-weight:normal;}img{border-width:0px;outline:none;}img.inline{vertical-align:middle;outline:none;}h1,h2,h3,h4,h5,h6{font-size:1em;}img.inline{vertical-align:middle;outline:none;}#topbar{width:100%;height:34px;background:url(/images/common/tbg.gif) repeat-x;position:relative;}.topanel{width:1024px;height:34px;margin:auto;}#memberp{width:630px;float:left;height:32px;line-height:33px;}#memberp a{color:#D0D0D0;padding:0 4px;}#searchform{background-color:inherit;width:190px;height:25px;margin-top:3px;float:right;}#searchform #srchtxt{margin-right:3px;padding:4px 7px 1px 5px;background:#FFF url(/images/common/form-field-bg.gif) no-repeat;width:120px;color:#999;height:17px;border:0;}#searchform #searchsubmit{background:url(/images/common/t_go.gif) no-repeat;width:29px;text-indent:-999%;line-height:1px;height:23px;cursor:pointer;margin-top:2px;border:0;}.searchsub{background:url(/images/common/t_go.gif);width:29px;height:23px;margin:0px;border:0px;padding:0px;font-size:0.1em;}#headerbg{width:100%;height:174px;background:url(/images/common/bg.gif) repeat-x;}.header{width:1024px;height:116px;margin:auto;}#dmenu{width:1024px;height:58px;margin:auto;}.bg-dmenuleft{width:76px;height:58px;background:url(/images/common/bg_cat.gif) no-repeat;float:left;}.bg-dmenu{width:822px;height:58px;background:#DCE1E8 url(/images/common/bg_dmenu.gif) no-repeat;float:left;}#nav{width:1024px;height:53px;margin:0 auto;background:url(/images/common/bg_areabar.gif) no-repeat center bottom;clear:both;color:#999;}#wrapper{width:1024px;min-height:450px;margin:auto;background:#ebebeb url(/images/common/cbg.gif) repeat-y;clear:both;}.wrap{width:95% !important;}#footer{width:1024px;height:200px;font-size:11px;color:#717275;background:#ebebeb url(/images/common/bg_bottom.gif) no-repeat;clear:both;margin:auto;}.footerc{width:900px;height:150px;margin:auto;text-align:left;}#ftop{width:80px;height:25px;text-align:center;}#ftop a{text-decoration:none;color:#406a78;background-color:inherit;font-size:11px;}#footlink{width:900px;margin:20px auto;height:60px;clear:both;text-align:left;}.fmenu{width:430px;height:16px;margin:10px;list-style:none;clear:both;}.fmenu li{width:65px;height:16px;float:left;}.fmenu li a{text-decoration:none;color:#a6a6a6;background-color:inherit;}.fmenu li a:hover{text-decoration:none;color:#bdbdbd;background-color:inherit;}.bhoge{float:right;width:110px;height:60px;background:url(/images/common/b_hoge.gif) no-repeat 30% 80%;text-align:left;line-height:23px;}.bw3c{float:right;width:110px;height:60px;background:url(/images/common/b_w3c.gif) no-repeat 30% 80%;text-align:left;line-height:23px;}.bexa{float:right;width:120px;height:60px;background:url(/images/common/b_exa.gif) no-repeat 40% 80%;text-align:left;line-height:23px;}#menu{padding:0;width:700px;height:36px;position:absolute;left:100px;bottom:0;}#menu a{float:left;width:88px;height:36px;border:0;background:transparent url(/images/common/menu_bg.gif) no-repeat;line-height:45px;color:#FFF;text-align:center;overflow:hidden;padding:0;}#menu a.dropmenu{float:left;width:88px;height:36px;border:0;background:transparent url(/images/common/menu_bg.gif) no-repeat;line-height:45px;color:#FFF;text-align:center;overflow:hidden;padding:0;}#menu li.current a{background:url(/images/common/menu_h_bg.gif) no-repeat;color:#333;height:36px;font-weight:bold;font-size:14px;}.postattachlist{width:600px !important;}.clearbar{overflow:hidden;height:10px;clear:both;}.muban_price{padding:10px 15px;border:1px solid #FADC80;background:#FFFBDB;color:#965432;line-height:24px !important;}strong.price{color:#FF6600;font-size:18px;}.minifont{color:#A2A7AB;font-family:arial,tahoma,verdana;font-size:11px;}.nums{color:#999999;font-size:10px;text-align:right;width:150px;}.main h4{font-size:14px;height:38px;line-height:38px;padding-left:5px;color:#000;}.main h1{margin-bottom:10px;font-size:16px;font-weight:400;}.main .list h3{padding-left:6px;color:#666;line-height:35px;}.itemtitle .l{float:left;}.itemtitle .r{float:right;}.itemtitle .r li{float:left;width:50px;list-style:none;text-align:left;padding-left:17px;}.itemtitle .r li.tposts{background:url(/images/common/boy.gif) no-repeat left center;}.itemtitle .r li.pdata{background:url(/images/common/girl.gif) no-repeat left center;}.itemtitle .r li.tmembers{background:url(/images/common/baom.gif) no-repeat left center;}.dotbar{width:574px;height:10px;text-align:center;margin:0 auto;clear:both;background:url(/images/common/dot1.gif) repeat-x bottom;}.wbar{width:560px;color:#806C80;height:33px;margin:0 auto;line-height:32px;text-align:center;clear:both;background:url(/images/common/dot1.gif) repeat-x bottom;}.wbar .l{float:left;padding-left:12px;}.wbar .r{float:right;width:220px;}.wbar li{float:left;width:50px;padding-left:17px;list-style:none;text-align:left;}.wbar .newthread{background:url(/images/common/newthread.gif) no-repeat left center;width:240px;}.news_box{clear:both;position:relative;width:560px;margin:0 auto;}.news_box ul{padding:0;margin:0;list-style:none;}.news_box li{height:30px;line-height:30px;border-bottom:1px dashed #E5E5E5;clear:both;overflow:hidden;}.news_box li.bai{background:#FFF;}.news_box li .icon{width:30px;height:30px;background:url(/images/common/slisticon.gif) no-repeat center center;float:left;}.img_box{clear:both;position:relative;width:560px;margin:0 auto;border-top:1px solid #EBEBEB;background:#F4F4F4;height:110px;}.img_box ul{padding:8px 0 0 4px;margin:0;overflow:hidden;}.img_box li{width:168px;height:95px;background:url(/images/common/mob_img_bg.gif) repeat-x bottom;float:left;margin:0 7px;}.img_box img{width:166px;height:88px;border:1px solid #EBEBEB;background:#333;display:block;}.img_box a{position:relative;display:block;}.img_box span{width:43px;height:43px;position:absolute;right:0;top:0;display:block;background:url(/images/common/hot/free.gif) no-repeat right top;}.img_box span.free{background:url(/images/common/hot/free.gif) no-repeat right top;}.img_box span.unfree{background:url(/images/common/hot/unfree.gif) no-repeat right top;}.img_box span.yugao{background:url(/images/common/hot/yugao.gif) no-repeat right top;}.taolun_box{clear:both;position:relative;width:560px;margin:0 auto;}.list th{padding-left:55px !important;background-image:url(/images/common/forum.gif);background-position:13px 10px;}.list th.new{background-image:url(/images/common/forum_new.gif);}.side h4{height:32px;background:url(/images/common/side_title_bg.png) repeat-x;line-height:32px;border:1px solid #D6E3E9;padding-left:10px;}.sbox{padding:8px;overflow:hidden;}.login_box,.event_box,.caifu_box{padding:8px;background:#FFF;border:1px solid #F2F2F2;overflow:hidden;clear:both;}.login_ava{width:80px;height:58px;background:url(/images/common/avatar_bg.gif) no-repeat;float:left;}.login_ava img{padding:5px;}.login_text{width:140px;float:left;}.login_join{width:60px;float:right;}.announcement{height:30px;background:url(/images/common/side_title_bg.png) repeat-x 0 -34px;line-height:30px;border:1px solid #E7E6C8;padding-left:20px;}.announcement .laba{padding-left:22px;background:url(/images/common/announcement.png) no-repeat left center;}.announcement .laba a{color:#8B0000 !important;text-decoration:none !important;}.event_box{height:230px;overflow:hidden;}.event_box ul{padding:0;margin:0;}.event_box li{float:left;width:142px;height:118px;text-align:center;}.event_box li img{width:135px;height:110px;border:1px solid #F2F2F2;}.caifu_box .info{border:1px solid #E7E6C8;background:#FCFBE7;padding:2px 4px;clear:both;}.caifu_box .paihang{clear:both;}.caifu_box ul{padding:0;margin:0;}.caifu_box li{clear:both;height:64px;border-bottom:1px dashed #E5E5E5}.caifu_box li p{clear:both;overflow:hidden;height:6px;padding:0;margin:0;}.caifu_box li div{height:52px;float:left;color:#999999;}.caifu_box li span{color:#666;}.caifu_box li .caifu_num{width:42px;background:url(/images/common/paihang_bg.gif) no-repeat center 22px;text-align:center;line-height:54px;font-size:10px;color:#FFF;}.caifu_box li .caifu_ava{width:60px;}.caifu_box li .caifu_ava img{border:2px solid #E1E9EF;}.caifu_box li .caifu_point{line-height:20px;overflow:hidden;width:180px;}.caifu_box li.no1 .caifu_num{background:url(/images/common/paihang_bg.gif) no-repeat center -82px;font-size:14px;font-weight:bold;}.caifu_box li.no1 span{color:#FF8176;font-size:14px;}.caifu_box li.no2 .caifu_num{background:url(/images/common/paihang_bg.gif) no-repeat center -27px;font-size:12px;font-weight:bold;}.caifu_box li.no2 span{color:#80B94B;}.threadv{background:url(/images/common/slisticon.gif) no-repeat 5px center;padding-left:30px;}.photoshow{width:574px;height:174px;background:url(/images/common/photo_bg.gif);margin:0 auto;}#slideshow{list-style:none;color:#fff;}#slideshow span{display:none}#psbar{overflow:hidden;height:7px;clear:both;}#slidephoto{width:560px;margin:0;margin:0 auto;display:none}#slidephoto *{margin:0;padding:0}#s_fullsize{position:relative;width:560px;height:160px;padding:0;background:#000}#s_information{position:absolute;bottom:0;width:560px;height:0;background:#000;color:#fff;overflow:hidden;z-index:200;opacity:.7;filter:alpha(opacity=70)}#s_information h3{padding:4px 8px 3px;font-size:12px;color:#CCC;}#s_information p{padding:0 8px 8px;font-size:12px;color:#7b7b7b;}#s_image{width:560px}#s_image img{position:absolute;z-index:25;width:auto}.imgnav{position:absolute;width:25%;height:160px;cursor:pointer;z-index:150}#imgprev{left:0;background:url(/images/common/photo/s_left.gif) left center no-repeat}#imgnext{right:0;background:url(/images/common/photo/s_right.gif) right center no-repeat}#imglink{position:absolute;height:160px;width:100%;z-index:100;opacity:.4;filter:alpha(opacity=40)}.linkhover{background:url(../../images/ahmengv2/link.gif) center center no-repeat}#slideleft{float:left;width:20px;height:81px;background:url(/images/common/photo/scroll-left.gif) center center no-repeat;background-color:#222}#slideleft:hover{background-color:#333}#slideright{float:right;width:20px;height:81px;background:#222 url(/images/common/photo/scroll-right.gif) center center no-repeat}#slideright:hover{background-color:#333}#slidearea{float:left;position:relative;width:540px;margin-left:3px;height:81px;overflow:hidden}#slider{position:absolute;left:0;height:81px}#slider img{cursor:pointer;border:1px solid #666;padding:2px}#ad_headerbanner{position:absolute;right:30px;top:60px;}.ad_text{margin:0 auto 5px;padding:10px 0;width:95%;background:#FFF;}
\ No newline at end of file
*{word-wrap:break-word;}html,body{border:0 !important;}body{background:#EBEBEB url("/images/common/bodybg.gif") repeat-x 0 90px;text-align:center;}body,td,input,textarea,select,button{color:#444;font:12px/1.6em Verdana,Helvetica,Arial,sans-serif;}input,select,button{vertical-align:middle;}textarea{resize:none;}body,ul,li,dl,dd,p,h1,h2,h3,h4,h5,h6,form,fieldset{margin:0;padding:0;}h1,h2,h3,h4,h5,h6{font-size:1em;}ul li{list-style:none;}a{text-decoration:none;color:#000;}a:hover{text-decoration:underline;}.lightlink,.lightlink a{color:#09C;}a img{border:none;}em,cite,strong,th{text-align:left;font-style:normal;}.emfont{color:#F60;}table{empty-cells:show;border-collapse:collapse;}th{font-weight:400;}.txt,.txtarea{padding:2px;*padding:0 2px;height:16px;*height:20px;border:1px solid;border-color:#999 #CCC #CCC #999;background:#FFF;}.txtarea{height:auto;}.checkbox,.radio{margin:0;width:15px;}.pipe{margin:0 5px;}.lighttxt,.lighttxt a,.pipe{color:#999;}.smalltext{font-size:0.83em;font-family:Verdana,Helvetica,Arial,sans-serif;}.noborder,.noborder td{border:none !important;}.nobg{background:none !important;}.right{float:right;}.left{float:left;}.onerror,.onright{clear:both;padding:2px 2px 2px 22px;background:url(/images/check_error.gif) no-repeat 2px 2px;}.onright{background:url(/images/check_right.gif) no-repeat 2px 2px;}.notice{clear:both;margin:5px 0;padding:3px 5px 3px 20px;background:url(/images/common/notice.gif) no-repeat 2px 6px;}.nodata{margin:99px auto;text-align:center;color:#999;font-size:16px;font-weight:700;}#ajaxwaitid{display:none;position:absolute;z-index:100;top:0;right:0;width:100px;height:1.6em;background:#D00;line-height:1.6em;color:#FFF;overflow:hidden;}#checksecanswer img,#checksecanswer3 img,#checkseccodeverify img,#checkseccodeverify3 img,.warning img{vertical-align:middle;}.s_clear:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.s_clear{zoom:1;}hr{clear:both;margin:1em 0;border:0 solid #E6E7E1;background:transparent;}.solidline{border-top:1px solid #FFF;border-bottom-width:1px;}.dashline{height:0px;border-bottom-width:1px;border-style:dashed;}.shadowline{*margin:2px 0;border-width:1px 0;border-top-color:#C8DCEC;border-bottom-color:#FFF;}.side .shadowline{margin:5px 0;*margin:2px 0;}.cornerlayger{padding:6px 8px;border:1px solid #09C;background:#EBF2F8;line-height:1.6em;}.minicorner{margin-top:-1px;height:6px;background:url(/images/common/attachinfobg.gif) no-repeat 50% 0;}.wrap{text-align:left;margin:0 auto;}#wrap{padding-bottom:10px;min-height:450px;border:0 solid #00B2E8;background-color:#FFF;clear:both;}* html #wrap{height:450px;}.wrap,#nav{width:1024px;}#header{margin-bottom:8px;min-width:1024px;width:100%;border-bottom:1px solid #00B2E8;background:#00A2D2 url("/images/common/header.gif") repeat-x 0 100%;}#header .wrap{position:relative;padding:24px 0 22px;}#header h2{float:left;}#umenu{position:absolute;right:0;top:0;line-height:20px;}#umenu a{margin:0 6px;}#umenu cite{font-weight:700;}#umenu cite span a{margin:0;font-weight:400;}#myprompt.new{padding-left:22px;background:url(/images/common/notice_newpm.gif) no-repeat 0 50%;}#myprompt_menu a.new{color:#F60;}#myprompt_menu li{float:left;width:50%;}.promptmenu{margin-left:-27px;padding-top:10px;width:250px;background:transparent url(/images/common/pm_ntc.gif) no-repeat 0 0;text-align:left;opacity:0.98;}.promptcontent{padding-bottom:10px;background:transparent url(/images/common/pm_ntc.gif) no-repeat -250px 100%;}.promptmenu ul{padding:0 10px;border:solid #91C8E2;border-width:0 2px;background:#FEFEFE;}.promptmenu li{border-bottom:1px solid #F4F4F4;line-height:29px;display:block;width:100%;color:#999;overflow:hidden;text-overflow:ellipsis;-webkit-text-overflow:ellipsis;-moz-text-overflow:ellipsis;-o-text-overflow:ellipsis;}.promptmenu a:hover{text-decoration:none;color:#09C;}.up{padding-top:0;padding-bottom:10px;width:150px;background-position:-500px 100%;}.up .promptcontent{padding-top:5px;padding-bottom:0;background-position:-650px 0;}.up li{border-bottom:none;line-height:160%;}#uchome_ntc{padding:1px 10px 3px 15px;*padding:2px 10px 2px 15px;background:url(/images/common/notify_bg_m.gif) no-repeat 0 50%;color:#FFF !important;}#uchome_ntc a{margin:0;}#umenu,#umenu a,#umenu .pipe{color:#97F2FF;}#footer{padding:1em 0;}#rightinfo{float:left;}#footlink{float:right;text-align:right;}#footer,#footer a{color:#8691A2;}.content{padding:20px 25px;}.content h1{margin-bottom:10px;font-size:16px;font-weight:400;}#menu{position:absolute;right:0;bottom:0;_bottom:-2px;height:26px;}#menu li{display:inline;float:left;margin-left:5px;;}#menu a{float:left;padding:0 14px;height:25px;border:solid #B0E4EF;border-width:1px 1px 0;background:transparent none;line-height:25px;color:#FFF;text-decoration:none;overflow:hidden;}#menu a.dropmenu{padding-right:20px;background-image:url(/images/common/arrow_down.gif);background-repeat:no-repeat;background-position:95% 50%;}#menu a:hover{border-color:#00B2E8;background-color:;color:#333;}#menu li.current a{height:26px;border-color:#00B2E8;background-color:;color:#333;}#nav{margin:-8px auto 0;background:url(/images/common/icon_nav.gif) no-repeat 0 50%;text-align:left;text-indent:25px;line-height:3em;}#nav,#nav a{color:#333;}.mainbox table{width:100%;}.blocktitle{margin-bottom:0.5em;font-size:16px;font-weight:700;}.channelinfo{clear:both;margin:5px 0;color:#666;}.channelinfo img{vertical-align:middle;}.channelinfo .onerror{* background-position:2px 0;}.pages_btns{padding:5px 0 1em;line-height:30px;}.pages,.pageback{float:right;padding:2px 0;}.pages a,.pages strong,.pageback a{float:left;padding:0 6px;margin-right:2px;height:26px;border:1px solid;line-height:26px;overflow:hidden;}.pages a,.pageback a{border-color:#E6E7E1;background-color:#FFF;color:#09C;}.pages a:hover,.pageback a:hover{text-decoration:none;}.pages strong{border-color:#09C;background-color:#09C;color:#FFF;font-weight:700;}.pages a.prev,.pages a.next{background-repeat:no-repeat;}.pages a.prev{background-image:url(/images/common/arrow_left.gif);background-position:30% 50%;padding:0;width:22px;overflow:hidden;text-indent:-9999px;}.pages a.next{padding-right:16px;background-image:url(/images/common/arrow_right.gif);background-position:90% 50%;}.pageback a{padding-left:16px;background:#FFF url(/images/common/arrow_left.gif) no-repeat 0 50%;}.pages a:hover,.pageback a,.pages a.next{border-color:#09C;}.formtable{width:100%;}.formtable th{padding:5px 2px;width:100px;}.formtable th a{font-weight:400;color:#09C;text-decoration:underline;}.formtable td{padding:5px 2px;}.formtable .sep_space th{height:40px;}.formtable .txt{width:270px;}.formtable .txtarea{float:left;margin:-1px 8px 0 0;width:270px;height:60px;border-top-color:#CCC;}.float_typeid{float:left;margin-right:6px;}.float_typeid select{float:left;height:20px;}.float_typeid a{display:block;overflow:hidden;padding:0 17px 0 4px;width:73px;height:20px;text-decoration:none !important;color:#444 !important;border:1px solid;border-color:#999 #CCC #CCC #999;background:#FFF url(/images/common/newarow.gif) no-repeat 100% 0;}* html .float_typeid a{height:18px;padding-top:2px;}.float_typeid a:hover,.float_typeid a:focus{border:1px solid #09C;background-position:100% -20px;}.float_typeid select{width:94px;}.short_select a{width:39px;}.short_select select{width:60px;}.select_menu{border:1px solid #09C;background:#FFF url(/images/common/newarow.gif) no-repeat 100% -20px;text-align:left;}.select_menu ul{margin:0 4px;}.select_menu li{color:#444;cursor:pointer;}.select_menu li:hover{color:#09C;}.select_menu li.current{color:#F60;}.commonlist li{margin:4px 0;}.inlinelist li{float:left;width:33%;}.inlinelist li.wide{width:49.5%;}.datalist{zoom:1;}.datalist table{margin-bottom:30px;width:100%;border:1px solid #E6E7E1;}.datalist th,.datalist td{padding:4px 5px;border:1px solid #E6E7E1;font-weight:400;}.datalist th img{vertical-align:top;}.datalist table .stat_subject{border-right:none;}.datalist table .stat_num{padding-right:15px;text-align:right;border-left:none;}.datalist .datatable{margin-bottom:10px;}.datalist .datatable,.datalist .datatable th,.datalist .datatable td{border-width:1px 0;}.datalist .fixtable{table-layout:fixed;}.colplural,.colplural th,.colplural td,th.highlight,td.highlight{background-color:#F5F5F5;}.avt_list li{float:left;margin-right:9px;width:64px;height:54px;text-align:center;}.side .avt_list li{margin:0;width:33.3%}.postmessage .avt_list li{height:70px;}.avt_uname li{height:80px;}.avt_list img{display:block;margin:0 auto;}.avt_list p{width:96%;white-space:nowrap;overflow:hidden;}.avt_list .cornerlayger p{white-space:normal;text-align:left;}.avt_list .minicorner{background:url(/images/common/attachinfobg.gif) no-repeat -30px 0;}.avt_title{margin:8px;}.list{border-top:3px solid #E6E7E1;}.content .list h3{padding-left:6px;color:#666;line-height:35px;}.list td,.list th{height:50px;padding:6px 0;border-top:1px dashed #E6E7E1;color:#666;}.list th{background:url(/images/common/forum.gif) 5px 10px no-repeat;padding-left:45px !important;}.narrowlist th{vertical-align:top;}.list th.new{background-image:url(/images/common/forum_new.gif);}.list th h2 em{font-weight:400;}.list th h2 em strong{color:#F60}.feed{margin-bottom:10px;}.feed h3{margin:10px 0 10px 30px;font-size:14px;color:#999;}.feed a{color:#09C;}.feed li{border-bottom:1px dashed #E6E7E1;}.feed div{padding:10px 30px;background:url(/images/common/alert.gif) no-repeat 0 12px;position:relative;}.feed div div{padding:0;background:none;}.feed .f_icon{background:none;}.feed .apptype{position:absolute;float:left;display:inline;margin:3px 0 0 -30px;}.feed .f_thread{background-image:url(/images/common/folder_new.gif);}.feed .f_reply{background-image:url(/images/topic/fastreply.gif);}.feed .f_quote{background-image:url(/images/topic/repquote.gif);}.feed .f_buddy{background-image:url(/images/common/user_link.gif);}.feed .f_pin{background-image:url(/images/common/pin_1.gif);background-position:0 9px;}.feed .f_digest{background-image:url(/images/common/digest_1.gif);}.feed .f_rate{background-image:url(/images/common/agree.gif);}.feed .f_manage{background-image:url(/images/common/icon_manage.gif);}.feed .f_magic{background-image:url(/images/common/magic.gif);}.feed .f_trade{background-image:url(/images/common/tradesmall.gif);}.feed .f_activity{background-image:url(/images/common/activitysmall.gif);}.feed .f_reward{background-image:url(/images/common/rewardsmall.gif);}.feed .f_task{background-image:url(/images/common/icon_task.gif);background-position:0 14px;}.feed .f_credit{background-image:url(/images/common/viewpay.gif);}.feed dfn{position:absolute;right:0;top:14px;*top:12px;font-style:normal;}.feed dfn .deloption{float:right;margin:0;}.feed em,.feed em a,.feed .summary{color:#999;}.feed .summary{margin:12px 2em 6px;}.feed dt{float:left;color:#444;}.feed dd{margin-bottom:6px;}.feed .il{margin-left:2em;white-space:nowrap;}a.to{padding-right:1em;background:url(/images/common/arrow_right.gif) no-repeat 100% 50%;}.feed i{margin:0 5px;color:#999;}.f_thumb{margin:5px 0;}.f_thumb img{margin-right:4px;padding:2px;max-width:100px;max-height:70px;border:1px solid #E6E7E1}* html .f_thumb img{width:100px;height:70px;}.feed fieldset{margin:10px 0;padding:0 0 0 20px;border:none;background:url(/images/common/icon_quote_m_s.gif) no-repeat 0 0;}.feed ins{margin:0;padding:0 20px 0 0;display:inline;background:url(/images/common/icon_quote_m_e.gif) no-repeat 100% 100%;line-height:1.6em;color:#999;text-decoration:none;}.folder{width:25px;text-align:center;}td.icon{width:20px;text-align:center;}.icon .solved{filter:alpha(opacity=30);opacity:0.3;}.subject label{float:right;}.threadlist th a:hover,.subject a:hover{color:#09C;}.datatable .subject{padding:8px 5px;}.threadpages{white-space:nowrap;}.threadpages a{padding:2px 4px;color:#444;}.threadpages a:hover{background-color:#EBF2F8;}.forum,.author,.lastpost{width:110px;}.lastpost,.lastpost cite,.lastpost em{text-align:right;}.author cite,.lastpost cite{display:block;margin-bottom:-5px;width:105px;height:1.6em;overflow:hidden;}thead .lastpost cite{margin-bottom:0;}.author em,.lastpost em,.lastpost em a{font-size:9px;font-family:Arial,sans-serif;color:#999;}.lastpost cite,.lastpost em{display:block;margin-right:5px;}.nums{width:80px;color:#999;text-align:center;}thead .nums{color:#444;}.nums strong{padding-right:2px;color:#09C;font-weight:400;}.nums em{padding-left:2px;color:#444;}.forumnums{width:90px;padding-right:10px !important;color:#999;text-align:center;}.forumnums em{color:#09C;}.forumlast{width:225px;text-align:left;}.num{width:120px;text-align:center;color:red;}.threadlist td{padding:0 !important;}.threadlist .colplural th,.threadlist .colplural td{padding:7px 0 !important;background:#EBF2F8;}.threadlist .colplural th{padding:7px 5px !important;}.threadlist .colplural a{color:#09C;font-family:Tahoma,sans-serif;}.threadlist .colplural a:hover{text-decoration:underline;}.threadlist .colplural .order_active{padding-right:8px;background:url(/images/common/order.gif) no-repeat 100% 50%;}.itemfilter{line-height:18px;}.itemfilter *{float:left;height:18px;overflow:hidden;}.itemfilter li{margin-right:5px;}.itemfilter .current a{margin-right:2px;background:url(/images/common/btn_block.gif) no-repeat 0 -161px;}.itemfilter .current a:hover{text-decoration:none;}.itemfilter span{cursor:pointer;}.itemfilter .current span{padding:0 5px;background:url(/images/common/btn_block.gif) no-repeat 100% -179px;color:#FFF;}.threadlist th em{margin-right:4px;}.threadlist th em,.threadlist th em a{color:#09C;}.threadlist th .attach{vertical-align:middle;}* html .threadlist th .attach{vertical-align:baseline;}.threadlist th a{text-decoration:none;}.dropmenu{padding-right:15px;background:url(/images/common/arrow_down.gif) 100% 50% no-repeat;cursor:pointer;}.popupmenu_popup{overflow:hidden;padding:10px;text-align:left;border:1px solid #CBD8E4;background:#FEFEFE;}.popupmenu_popup li{margin:3px 0;line-height:20px;}.headermenu_popup{width:100px;}.headermenu_popup li{width:100px;border-bottom:1px solid #E6E7E1;}.headermenu_popup a:hover{text-decoration:none;color:#09C;}.headermenu_popup .active{font-weight:700;}.titlemenu_popup{padding:0;}.titlemenu_popup li{margin:0;}.titlemenu_popup a{display:block;padding:3px 8px;}* html .titlemenu_popup a{display:inline-block;}.titlemenu_popup .current a{background:#F1F5FA;}.filter_popup{width:5em;}.filter_popup li{width:60px;}.showselect_menu{margin-bottom:0.8em;padding:5px;text-align:left;border:1px solid #CBD8E4;background:#FEFEFE;}.headactions .popupmenu_popup a,.headactions .popupmenu_popup strong{color:#666;background:none;white-space:nowrap;}.headactions .popupmenu_popup{overflow:visible;}.hasdropdownbtn{}.hasdropdownbtn input{float:left;width:129px;}.hasdropdownbtn .spmediuminput{width:115px;}.dropdownbtn{float:left;overflow:hidden;text-indent:-9999px;width:20px;height:20px;border-width:1px 1px 1px 0;border-style:solid;border-color:#999 #CCC #CCC #999;background:#FFF url(/images/common/newarow.gif) no-repeat 0 0;}.dropdownbtn:hover{background-position:0 -20px;}#style_switch{position:absolute;right:0px;bottom:-25px;}#style_switch li{float:left;padding-left:5px;}#style_switch a{float:left;width:8px;height:8px;border:1px solid #DDD;background:#FFF;line-height:100px;overflow:hidden;}#style_switch a:hover,#style_switch .current a{border-color:#FFF;}#style_switch .current a{margin-top:-1px;border-width:2px;}#ad_headerbanner{float:right;margin:5px 0 10px;}.ad_text{margin:0 auto 5px;padding:10px 0;width:1024px;background:#FFF;}.ad_text table{width:100%;}.ad_text td{padding:3px 20px;text-align:left;}.ad_textlink1,.ad_textlink2{margin:10px 0;padding-left:20px;background:url(/images/common/icon_ad.gif) no-repeat 0 50%;}.ad_pip{clear:right;float:right;padding:10px;background:#FFF;color:#999;line-height:130%;}.ad_pip li{margin-bottom:1em;}.ad_pip a{color:#09C;}.ad_topicrelated{clear:both;float:right;display:inline;margin:0 10px 10px;padding:10px 10px 10px 30px;border:1px solid #78A73D;background:#CAEEC0;}.ad_column{text-align:center;}.ad_footerbanner{text-align:center;clear:both;margin:5px;}.ad_float_left,.ad_float_right{float:right;position:fixed;top:350px;z-index:300;}* html .ad_float_left,* html .ad_float_right{position:absolute;top:expression(offsetParent.scrollTop+350);}.ad_float_left{left:5px;}.ad_float_right{right:5px;}.ad_couplebanner{top:5px}* html .ad_couplebanner{top:expression(offsetParent.scrollTop+5);}.headactions{float:right;line-height:1em;padding:12px 0 0;}.headactions img{vertical-align:middle;cursor:pointer;padding:0 5px;}.headactions a{margin-left:4px;}.mainbox .headactions{color:#999;}.mainbox .headactions strong{font-weight:700;}.msgfix{overflow:hidden;}.side{width:170px;}.postauthor .avatar img{background:url(/images/common/midavt_shadow.gif) repeat-x scroll 0 100% #FFFFFF;padding:5px 5px 8px;max-height:160px;max-width:130px;}.sideinner .txt{margin:6px 0;}.side li.current a{font-weight:700;color:#444;text-decoration:none;}.with_side{background:#FFF url("/images/common/sidebg.gif") repeat-y 100% 0;}.with_side .main{float:left;overflow:hidden;margin-left:-180px;width:100%;}.with_side .content{margin-left:180px;width:auto;}.with_side .side{float:right;padding-bottom:20px;width:180px;}.with_side .side h2{margin:20px 25px 10px;color:#999;font-size:14px;}.with_side .side a{color:#09C;text-decoration:underline;}.sideinner{padding:0 25px;}.sideinner .tabs{margin:5px 0;}.sideinner .tabs li{line-height:2em;}.numbg{float:right;text-align:center;width:35px;height:2em;background:url(/images/common/numbg.gif) no-repeat 0 50%;color:#FFF;font-weight:700;}.special{background:none;}.special .main{float:right;}.special .side{float:left;}.sidebox{overflow:hidden;margin:5px 10px 10px;}.sidebox h4{margin-bottom:4px;color:#09C;}.fwinmask{}.fwin{overflow-x:hidden;margin:0 auto;text-align:left;}.t_l,.t_c,.t_r,.m_l,.m_r,.b_l,.b_c,.b_r{overflow:hidden;opacity:0.9;filter:alpha(opacity=90);background:#CBD8E4;}.t_l,.t_r,.b_l,.b_r{width:8px;height:8px;}.t_c,.b_c{height:8px;}.m_l,.m_r{width:8px;}.m_c{background:#F1F5FA;}.fcontent{margin:15px;}.float_ctrl{margin-bottom:15px;height:20px;line-height:20px;}.float_ctrl em{float:left;font-size:14px;font-weight:700;color:#09C;}.float_ctrl em a{text-decoration:none;}.float_ctrl .needverify{margin-left:8px;padding-left:13px;width:45px;height:21px;line-height:21px;background:url(/images/common/re_unsolved.gif) no-repeat 0 0;font-size:12px;color:#666;font-weight:400;}.float_ctrl .onerror,.float_ctrl .onright{white-space:nowrap;height:auto;line-height:140%;color:#444;font-size:12px;font-weight:400;}.float_ctrl span{float:right;color:#999;}.float_ctrl span a,.float_ctrl strong{float:left;text-decoration:none;margin-left:8px;font-weight:400;color:#444;}.float_ctrl span a:hover{color:#999;}.float_close{float:left;width:20px;height:20px;overflow:hidden;text-indent:-9999px;background:url(/images/common/newclose.gif) no-repeat 0 0;}.float_close:hover{background-position:0 -20px;}.floatwrap{overflow:auto;overflow-x:hidden;margin-bottom:10px;height:280px;}.fcontent li{list-style:none;}.fcontent a{color:#09C;text-decoration:underline;}.fcontent .list{margin:0 auto;width:570px;border-top:3px solid #E6E7E1;border-bottom:3px solid #E6E7E1;}.fcontent .list th,.fcontent .list td{padding:3px !important;height:auto;border-bottom:1px dashed #E6E7E1;}.fcontent .list .btns th,.fcontent .list .btns td{border-bottom:none;}.fcontent .list th{width:150px;background:none;}.postbox{clear:both;}.moreconf{margin-top:10px;}.moreconf button,.moreconf a{margin-right:3px;}.loginform{float:left;margin-bottom:10px;*margin-bottom:-10px;padding:20px 0;width:280px;border-right:1px solid #D3E8F2;}.regsec{margin-bottom:10px;}.channelinfo .onerror,.channelinfo .onright{background-position:2px 0;}.loginform label{clear:both;overflow:hidden;display:block;margin:0 0 10px;line-height:22px;}.loginform .txt{width:170px;}.loginform select{width:175px;}.fsubmit{clear:both;margin-top:8px;}.fsubmit .submit{margin-right:8px;}.loginform label em,.fsubmit em{float:left;width:60px;}.fsubmit .regpre{*margin-top:4px;}.nolabelform .txt{width:230px;}.clause{overflow:auto;margin-bottom:10px;width:470px;height:240px;}.selectinput{float:none;margin:0 0 10px;width:234px;height:20px;background-color:#FFF;border:1px solid;border-color:#999 #CCC #CCC #999;}.selectinput a{float:left;padding-right:0;width:61px;border:none;}.selectinput a:hover,.selectinput a:focus{border:none;}.selectinput .txt{float:left;width:160px;border:none;}.selecttype{float:none;margin:10px 0;clear:both;}.selecttype a,.selecttype a:hover,.selecttype a:focus{padding-right:0;width:230px;background-color:transparent;border-color:#F1F5FA;color:#999 !important;}.loginpsw label{float:left;padding-left:4px;width:61px;line-height:150%;}.capslock{background:url(/images/common/capslock.gif) no-repeat 98% 50%;}.logininfo{float:left;overflow:visible;margin:87px 25px 10px 40px;}.logininfo h4{margin-bottom:10px;font-weight:400;font-size:14px;}.multinfo{margin-top:53px;}.switchnav{float:left;white-space:nowrap;overflow:hidden;width:480px;}.postboardlist{overflow:hidden;margin:9px 0;width:597px;border-width:1px 0 1px 1px;border-style:solid;border-color:#CBD8E4;background:#FFF;}.postboardlist li{float:left;overflow-x:hidden;overflow-y:auto;padding:5px;width:188px;height:300px;border-right:1px solid #CBD8E4;}.postboardlist p{height:25px;line-height:25px;}.postboardlist a{display:block;white-space:nowrap;overflow:hidden;padding:0 4px;text-decoration:none;color:#444;}.postboardlist a:hover{text-decoration:none;background-color:#F5F5F5;}.postboardlist .highlightlink{color:#09C;}.hassubboard{background:url(/images/common/arrow_right.gif) right center no-repeat;}.pbl_selected a,.pbl_selected a:hover{background-color:#09C;color:#FFF !important;font-weight:700;}.nofloat{height:auto !important;height:410px;min-height:410px;background-color:#EBF2F8;}.nofloat .fcontent{margin:15px auto;width:600px;}.nofloat .loginform{height:auto;}.nofloat .clause{width:auto;height:auto;}.fcontent .float_postinfo{width:568px;}.c_header{overflow:hidden;margin-bottom:10px;}* html .c_header{zoom:1;}.c_header h2,.c_header h3{float:left;padding-right:15px;background:#FFF;font-size:14px;cursor:pointer;}.c_header h3{background:#FFF url(/images/common/arrow_down_big.gif) no-repeat 100% 5px;color:#09C;}.searchfaq h3{background:none;cursor:auto;}.c_header .noarrow{background:none;cursor:auto;}.c_header h3 a{color:#09C;}.c_header h3 span{font-size:12px;font-weight:400;color:#666;}.c_header h2 em,.c_header h3 em{margin-left:8px;font-size:12px;color:#999;font-weight:400;}.c_header_action{float:right;}.c_header .c_header_ctrlbtn{display:none;}.c_header .c_header_ext{display:block;}.closenode{background:url(/images/common/dashline.gif) repeat-x 0 10px;}.closenode h3{background-image:url(/images/common/arrow_right_big.gif);}.closenode .c_header_ctrlbtn{display:block;background-color:#FFF;color:#666;cursor:pointer;}.closenode .c_header_ext{display:none;}.itemtitle{clear:both;overflow:hidden;margin-bottom:10px;line-height:23px;}.itemtitle h1{float:left;margin:0 20px 0 0;}.itemtitle ul{float:left;}.itemtitle li{float:left;margin-right:5px;}.itemtitle li.pipe{margin-left:0;}.itemtitle ul a{display:block;overflow:hidden;height:23px;cursor:pointer;}* html .itemtitle ul a{float:left;}.itemtitle ul a span{display:block;padding:0 7px;*padding:1px 7px 0;*line-height:22px;}.itemtitle ul a:hover{background:#F5F5F5 url(/images/common/btn_block.gif) no-repeat 0 -46px;text-decoration:none;}.itemtitle ul a:hover span{background:url(/images/common/btn_block.gif) no-repeat 100% -69px;}.itemtitle ul a.dropmenu{padding-right:0;background-position:0 -161px;}.itemtitle ul a.dropmenu span{padding-right:12px;background:url(/images/common/btn_block.gif) no-repeat 100% -138px;}.itemtitle ul a.dropmenu:hover{background-position:0 -46px;}.itemtitle ul a.dropmenu:hover span{background-position:100% -115px;}.itemtitle ul .current a,.itemtitle ul .current a:hover,.itemtitle ul .current a.dropmenu:hover{background:#09C url(/images/common/btn_block.gif) no-repeat 0 0;}.itemtitle ul .current a span,.itemtitle ul .current a:hover span{background:url(/images/common/btn_block.gif) no-repeat 100% -23px;color:#FFF;}.itemtitle ul .current a.dropmenu span,.itemtitle ul .current a.dropmenu:hover span{background-position:100% -92px;}.float_postinfo{}.float_postinfo em{float:left;margin-right:5px;padding-left:3px;height:20px;border:1px solid;border-color:#999 #CCC #CCC #999;background-color:#FFF;cursor:pointer;}.float_postinfo em img{margin-top:2px;}.float_postinfo input{float:left;}.float_postinfo #subject{width:358px;}.float_postinfo .float_typeid{display:inline;margin-right:0;margin-left:6px;}.viewpoint{margin:9px 0;}.colorbox input{margin:2px;padding:0px;float:left;cursor:pointer;width:12px;height:12px;border:0;}.smilieslist{padding:10px;border:1px solid #CBD8E4;background:#FEFEFE;}.smilieslist td{padding:8px;border:none;cursor:pointer;}.smilieslist_page{*float:left;text-align:right;}.smilieslist_page a{margin-right:5px;color:#09C;text-decoration:underline;}.pags_act{float:left;}.smilies_preview{margin-top:5px;padding:8px;background:#FFF;border:1px solid #CBD8E4;}.smiliesgroup{height:33px;*height:34px;overflow:hidden;width:expression(this.parentNode.offsetWidth);}.smiliesgroup ul,.imguptype{margin:6px 0;padding:0 0 26px 8px;border-bottom:1px solid #D3E8F2;}.smiliesgroup li,.imguptype li{display:inline;}* html .smiliesgroup li,* html .imguptype li{line-height:18px;}.smiliesgroup li a,.imguptype li a{float:left;margin:2px 6px 0 0;padding:2px 10px;height:19px;border:1px solid #D3E8F2;color:#09C;text-decoration:none;}.smiliesgroup li a:focus,.imguptype li a:focus{outline:none;}.smiliesgroup li a.current,.imguptype li a.current{border-bottom-color:#FEFEFE;font-weight:700;color:#444;}.alert_win{margin:0;width:350px;}.alert_win .float_ctrl{margin-bottom:0;padding:8px;}.alert_win .shadowline{margin:0;*margin:-8px 0;}.alert_win .postbox{*margin-top:-15px;padding:15px;}.alert_right,.alert_error,.alert_info{padding:6px 0 6px 58px;line-height:160%;background:url(/images/common/right_big.gif) no-repeat 8px 50%;font-size:14px;}.alert_error{background-image:url(/images/common/error_big.gif);}.alert_info{background-image:url(/images/common/info_big.gif);}.alert_btnleft{margin-top:8px;}.alert_btn{margin-top:20px;text-align:center;}.alert_act{margin-top:20px;padding-left:58px;}.popupcredit{}.pc_l,.pc_c,.pc_inner,.pc_r{width:29px;height:56px;line-height:56px;background:url(/images/common/popupcredit_bg.gif) no-repeat 0 0;}.pc_c{width:200px;background-position:0 -56px;background-repeat:repeat-x;}.pc_inner{white-space:nowrap;text-align:center;width:auto;background-position:50% -112px;}.pc_inner span{margin-right:15px;color:#FFEA97;font-size:14px;font-weight:700;}* html .pc_inner span{display:inline-block;}.pc_inner span a{color:#FFEA97;text-decoration:underline;}.pc_inner span em{color:#FFF;font-size:18px;font-weight:400;}.pc_inner span em.desc{color:#930;}.pc_btn img{opacity:0.5;}.pc_btn:hover img{opacity:1;}.pc_r{background-position:-30px 0;}.optionbar{float:left;overflow:hidden;margin:3px 4px 0 -6px;background:#09C url(/images/common/header.gif) repeat-x;height:14px;}.deloption{float:left;margin:4px;width:12px;height:12px;background:url(/images/common/close.gif) no-repeat 0 0;overflow:hidden;text-indent:-9999px;}.deloption:hover{background-position:0 -12px;}.color_menu{overflow:hidden;width:63px;}.color_menu a{overflow:hidden;float:left;width:20px;height:20px;}.chosemagic{margin-bottom:9px;width:220px;}.topicadminhigh{height:200px;}.topicadminhigh .tah_body{margin:5px 0 15px;}.topicadminhigh .tah_body select{width:217px;}.topicadminlow{height:50px;}.topicadminlow table{width:100%;}.topicadminlow td{padding:0 5px;}.topicadminlow .txt{width:100px;}.topicadminlow .wide .txt{width:50px;}.topicadminlog{}.topicadminlog h4{font-weight:400;}.topicadminlog .dropdownbtn{border-left-width:1px;}.topicadminlog .txtarea{margin:5px 0;width:212px;height:40px;}body{font-size:12px;color:#555;font-family:Arial,Tahoma,Verdana,Serif;padding:0;height:100%;margin:0;background:#ebebeb;}table,tr,td{font-family:Tahoma,Verdana,Georgia,Simsun,Serif;font-size:12px;background-color:inherit;color:#666;}em,cite,strong,th{font-style:normal;font-weight:normal;}img{border-width:0px;outline:none;}img.inline{vertical-align:middle;outline:none;}h1,h2,h3,h4,h5,h6{font-size:1em;}img.inline{vertical-align:middle;outline:none;}#topbar{width:100%;height:34px;background:url(/images/common/tbg.gif) repeat-x;position:relative;}.topanel{width:1024px;height:34px;margin:auto;}#memberp{width:630px;float:left;height:32px;line-height:33px;}#memberp a{color:#D0D0D0;padding:0 4px;}#searchform{background-color:inherit;width:190px;height:25px;margin-top:3px;float:right;}#searchform #srchtxt{margin-right:3px;padding:4px 7px 1px 5px;background:#FFF url(/images/common/form-field-bg.gif) no-repeat;width:120px;color:#999;height:17px;border:0;}#searchform #searchsubmit{background:url(/images/common/t_go.gif) no-repeat;width:29px;text-indent:-999%;line-height:1px;height:23px;cursor:pointer;margin-top:2px;border:0;}.searchsub{background:url(/images/common/t_go.gif);width:29px;height:23px;margin:0px;border:0px;padding:0px;font-size:0.1em;}#headerbg{width:100%;height:174px;background:url(/images/common/bg.gif) repeat-x;}.header{width:1024px;height:116px;margin:auto;}#dmenu{width:1024px;height:58px;margin:auto;}.bg-dmenuleft{width:76px;height:58px;background:url(/images/common/bg_cat.gif) no-repeat;float:left;}.bg-dmenu{width:822px;height:58px;background:#DCE1E8 url(/images/common/bg_dmenu.gif) no-repeat;float:left;}#nav{width:1024px;height:53px;margin:0 auto;background:url(/images/common/bg_areabar.gif) no-repeat center bottom;clear:both;color:#999;}#body{width:1024px;min-height:450px;margin:auto;background:#ebebeb url(/images/common/cbg.gif) repeat-y;clear:both;}.wrap{width:95% !important;}#footer{width:1024px;height:200px;font-size:11px;color:#717275;background:#ebebeb url(/images/common/bg_bottom.gif) no-repeat;clear:both;margin:auto;}.footerc{width:900px;height:150px;margin:auto;text-align:left;}#ftop{width:80px;height:25px;text-align:center;}#ftop a{text-decoration:none;color:#406a78;background-color:inherit;font-size:11px;}#footlink{width:900px;margin:20px auto;height:60px;clear:both;text-align:left;}.fmenu{width:430px;height:16px;margin:10px;list-style:none;clear:both;}.fmenu li{width:65px;height:16px;float:left;}.fmenu li a{text-decoration:none;color:#a6a6a6;background-color:inherit;}.fmenu li a:hover{text-decoration:none;color:#bdbdbd;background-color:inherit;}.bhoge{float:right;width:110px;height:60px;background:url(/images/common/b_hoge.gif) no-repeat 30% 80%;text-align:left;line-height:23px;}.bw3c{float:right;width:110px;height:60px;background:url(/images/common/b_w3c.gif) no-repeat 30% 80%;text-align:left;line-height:23px;}.bexa{float:right;width:120px;height:60px;background:url(/images/common/b_exa.gif) no-repeat 40% 80%;text-align:left;line-height:23px;}#menu{padding:0;width:700px;height:36px;position:absolute;left:100px;bottom:0;}#menu a{float:left;width:88px;height:36px;border:0;background:transparent url(/images/common/menu_bg.gif) no-repeat;line-height:45px;color:#FFF;text-align:center;overflow:hidden;padding:0;}#menu a.dropmenu{float:left;width:88px;height:36px;border:0;background:transparent url(/images/common/menu_bg.gif) no-repeat;line-height:45px;color:#FFF;text-align:center;overflow:hidden;padding:0;}#menu li.current a{background:url(/images/common/menu_h_bg.gif) no-repeat;color:#333;height:36px;font-weight:bold;font-size:14px;}.postattachlist{width:600px !important;}.clearbar{overflow:hidden;height:10px;clear:both;}.muban_price{padding:10px 15px;border:1px solid #FADC80;background:#FFFBDB;color:#965432;line-height:24px !important;}strong.price{color:#FF6600;font-size:18px;}.minifont{color:#A2A7AB;font-family:arial,tahoma,verdana;font-size:11px;}.nums{color:#999999;font-size:10px;text-align:right;width:150px;}.main h4{font-size:14px;height:38px;line-height:38px;padding-left:5px;color:#000;}.main h1{margin-bottom:10px;font-size:16px;font-weight:400;}.main .list h3{padding-left:6px;color:#666;line-height:35px;}.itemtitle .l{float:left;}.itemtitle .r{float:right;}.itemtitle .r li{float:left;width:50px;list-style:none;text-align:left;padding-left:17px;}.itemtitle .r li.tposts{background:url(/images/common/boy.gif) no-repeat left center;}.itemtitle .r li.pdata{background:url(/images/common/girl.gif) no-repeat left center;}.itemtitle .r li.tmembers{background:url(/images/common/baom.gif) no-repeat left center;}.dotbar{width:574px;height:10px;text-align:center;margin:0 auto;clear:both;background:url(/images/common/dot1.gif) repeat-x bottom;}.wbar{width:560px;color:#806C80;height:33px;margin:0 auto;line-height:32px;text-align:center;clear:both;background:url(/images/common/dot1.gif) repeat-x bottom;}.wbar .l{float:left;padding-left:12px;}.wbar .r{float:right;width:220px;}.wbar li{float:left;width:50px;padding-left:17px;list-style:none;text-align:left;}.wbar .newthread{background:url(/images/common/newthread.gif) no-repeat left center;width:240px;}.news_box{clear:both;position:relative;width:560px;margin:0 auto;}.news_box ul{padding:0;margin:0;list-style:none;}.news_box li{height:30px;line-height:30px;border-bottom:1px dashed #E5E5E5;clear:both;overflow:hidden;}.news_box li.bai{background:#FFF;}.news_box li .icon{width:30px;height:30px;background:url(/images/common/slisticon.gif) no-repeat center center;float:left;}.img_box{clear:both;position:relative;width:560px;margin:0 auto;border-top:1px solid #EBEBEB;background:#F4F4F4;height:110px;}.img_box ul{padding:8px 0 0 4px;margin:0;overflow:hidden;}.img_box li{width:168px;height:95px;background:url(/images/common/mob_img_bg.gif) repeat-x bottom;float:left;margin:0 7px;}.img_box img{width:166px;height:88px;border:1px solid #EBEBEB;background:#333;display:block;}.img_box a{position:relative;display:block;}.img_box span{width:43px;height:43px;position:absolute;right:0;top:0;display:block;background:url(/images/common/hot/free.gif) no-repeat right top;}.img_box span.free{background:url(/images/common/hot/free.gif) no-repeat right top;}.img_box span.unfree{background:url(/images/common/hot/unfree.gif) no-repeat right top;}.img_box span.yugao{background:url(/images/common/hot/yugao.gif) no-repeat right top;}.taolun_box{clear:both;position:relative;width:560px;margin:0 auto;}.list th{padding-left:55px !important;background-image:url(/images/common/forum.gif);background-position:13px 10px;}.list th.new{background-image:url(/images/common/forum_new.gif);}.side h4{height:32px;background:url(/images/common/side_title_bg.png) repeat-x;line-height:32px;border:1px solid #D6E3E9;padding-left:10px;}.sbox{padding:8px;overflow:hidden;}.login_box,.event_box,.caifu_box{padding:8px;background:#FFF;border:1px solid #F2F2F2;overflow:hidden;clear:both;}.login_ava{width:80px;height:58px;background:url(/images/common/avatar_bg.gif) no-repeat;float:left;}.login_ava img{padding:5px;}.login_text{width:140px;float:left;}.login_join{width:60px;float:right;}.announcement{height:30px;background:url(/images/common/side_title_bg.png) repeat-x 0 -34px;line-height:30px;border:1px solid #E7E6C8;padding-left:20px;}.announcement .laba{padding-left:22px;background:url(/images/common/announcement.png) no-repeat left center;}.announcement .laba a{color:#8B0000 !important;text-decoration:none !important;}.event_box{height:230px;overflow:hidden;}.event_box ul{padding:0;margin:0;}.event_box li{float:left;width:142px;height:118px;text-align:center;}.event_box li img{width:135px;height:110px;border:1px solid #F2F2F2;}.caifu_box .info{border:1px solid #E7E6C8;background:#FCFBE7;padding:2px 4px;clear:both;}.caifu_box .paihang{clear:both;}.caifu_box ul{padding:0;margin:0;}.caifu_box li{clear:both;height:64px;border-bottom:1px dashed #E5E5E5}.caifu_box li p{clear:both;overflow:hidden;height:6px;padding:0;margin:0;}.caifu_box li div{height:52px;float:left;color:#999999;}.caifu_box li span{color:#666;}.caifu_box li .caifu_num{width:42px;background:url(/images/common/paihang_bg.gif) no-repeat center 22px;text-align:center;line-height:54px;font-size:10px;color:#FFF;}.caifu_box li .caifu_ava{width:60px;}.caifu_box li .caifu_ava img{border:2px solid #E1E9EF;}.caifu_box li .caifu_point{line-height:20px;overflow:hidden;width:180px;}.caifu_box li.no1 .caifu_num{background:url(/images/common/paihang_bg.gif) no-repeat center -82px;font-size:14px;font-weight:bold;}.caifu_box li.no1 span{color:#FF8176;font-size:14px;}.caifu_box li.no2 .caifu_num{background:url(/images/common/paihang_bg.gif) no-repeat center -27px;font-size:12px;font-weight:bold;}.caifu_box li.no2 span{color:#80B94B;}.threadv{background:url(/images/common/slisticon.gif) no-repeat 5px center;padding-left:30px;}.photoshow{width:574px;height:174px;background:url(/images/common/photo_bg.gif);margin:0 auto;}#slideshow{list-style:none;color:#fff;}#slideshow span{display:none}#psbar{overflow:hidden;height:7px;clear:both;}#slidephoto{width:560px;margin:0;margin:0 auto;display:none}#slidephoto *{margin:0;padding:0}#s_fullsize{position:relative;width:560px;height:160px;padding:0;background:#000}#s_information{position:absolute;bottom:0;width:560px;height:0;background:#000;color:#fff;overflow:hidden;z-index:200;opacity:.7;filter:alpha(opacity=70)}#s_information h3{padding:4px 8px 3px;font-size:12px;color:#CCC;}#s_information p{padding:0 8px 8px;font-size:12px;color:#7b7b7b;}#s_image{width:560px}#s_image img{position:absolute;z-index:25;width:auto}.imgnav{position:absolute;width:25%;height:160px;cursor:pointer;z-index:150}#imgprev{left:0;background:url(/images/common/photo/s_left.gif) left center no-repeat}#imgnext{right:0;background:url(/images/common/photo/s_right.gif) right center no-repeat}#imglink{position:absolute;height:160px;width:100%;z-index:100;opacity:.4;filter:alpha(opacity=40)}.linkhover{background:url(../../images/ahmengv2/link.gif) center center no-repeat}#slideleft{float:left;width:20px;height:81px;background:url(/images/common/photo/scroll-left.gif) center center no-repeat;background-color:#222}#slideleft:hover{background-color:#333}#slideright{float:right;width:20px;height:81px;background:#222 url(/images/common/photo/scroll-right.gif) center center no-repeat}#slideright:hover{background-color:#333}#slidearea{float:left;position:relative;width:540px;margin-left:3px;height:81px;overflow:hidden}#slider{position:absolute;left:0;height:81px}#slider img{cursor:pointer;border:1px solid #666;padding:2px}#ad_headerbanner{position:absolute;right:30px;top:60px;}.ad_text{margin:0 auto 5px;padding:10px 0;width:95%;background:#FFF;}
\ No newline at end of file
5380
\ No newline at end of file
1108
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment