﻿
/* ************************************************ 栏目页（如zhulei.aspx）的样式 ********** */

/* =========================================== 左侧边栏 =========================*/
.sidebar
{
    float: left;
    width: 170px; 
    padding: 5px;
    background: #CCFFCC;
    min-height: 100%;
}

/* ------------- Search 搜索框 ---------- */
div.Search
{
    padding: 4px;
    border: 1px solid #C0C0C0;
    background-color: #CC9900;
}

.SearchTextBox
{
    width: 95px;
    border: 1px solid #808080;
    font-weight: bold;
    background-color: #FFFFFF;
}

.ButtonSearch
{
    width: 45px;
    font-weight: bold;
    color: #CC3300;
    background-color: #C0C0C0;
}

/* ------------- TreeView -------------- */
.TreeView
{
    height: 500px;
    overflow: scroll;
    border: 1px solid #666666;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.TreeView a:link
{
    color: #000000;
    text-decoration: none;
}

.TreeView a:visited
{
    color: #000000;
    text-decoration: none;
}

.TreeView a:hover, a:active
{
    color: #0000FF;
    text-decoration: underline;
}


/* ============================================== 右侧主体栏 ================================ */
.content
{
    float: left;
    width: 760px; 
    min-height: 420px;       /* 主体内容都应设置 min-height属性，否则会造成显示宽度不一的情况 */
    padding: 5px 0 5px 10px;
    border-left-width: 1px;
    border-left-color: #666666;
    border-left-style: solid;
}

/* ------------ ListView1 <LayoutTemplate>模板显示的样式 ----- */

.LayoutTemplate
{
    border: 1px solid #006600;
}

/* -------- <ItemTemplate>模板显示的样式 ---------- */
.itemContent
{
    width: 740px;
    height: 140px;
    margin: 3px;
    padding: 2px;
    border: 1px solid #006600;
}

.itemContentImage
{
    float: left;
    width: 180px;
    text-align: center;
}

.itemContentText
{
    float: left;
    width: 540px;
    height: 138px;
    margin-bottom: 2px;
    margin-left: 10px;
    line-height: 24px;
    overflow: hidden;
}

/* -----------  DataPager 翻页 -------------- */
.DataPager
{
    margin: 10px;
    font-size: 14px;
    word-spacing: 8px;
    background-color: #CCCC00;
}





