﻿/*第一种**/
.table
{
    width: 100%;
    margin: 5px auto;
    border: 1px solid #dfdfdf;
    -moz-border-radius: 5px 5px 3px 3px;
    -webkit-border-radius: 5px 5px 3px 3px;
    border-radius: 5px 5px 3px 3px;
    border-spacing:0;
}
.table th
{
    height: 29px;
    color: #7a7452;
    text-align: center;
    /*border-top: 1px solid #99BBE8;**/
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dfdfdf;
    background-image: url(../Images/list_hd_bg.png);
}
.table tr th:first-child
{
    -moz-border-radius-topleft: 5px; /*Mozilla(Firefox等浏览器)**/
    -webkit-border-top-left-radius: 5px; /*WebKit ( Chrome等浏览器)**/
    border-top-left-radius: 5px; /*IE浏览器、Opera浏览器**/
}
.table tr th:last-child
{
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    border-right: 0px;
}
.table tr:last-child td:first-child
{
    -moz-border-radius-bottomleft: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.table tr:last-child td:last-child
{
    -moz-border-radius-bottomright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-right: 0px;
}
.table tr:last-child td
{
    border-bottom: 1px solid #dcdcdc;
}
.table td
{
    height: 28px;
    line-height: 20px;
    text-align: center;
    border-bottom: 1px dotted #c7c7c7;
}
.table td a
{
    color: #099;
    /*text-decoration: underline;**/
}
/*第二种**/
.table2
{
    padding: 0;
    margin: 0;
    border-collapse: collapse;
    line-height: 1.8em;
    border-spacing:0;
    background-color: #fefefe;
}
.table2 th
{
    background: #E0ECFF;
    background-image: url(../Images/list_hd_bg.png);
    line-height: 25px;
    color: #7a7452;
    text-align: center;
}
.table2 tr
{
    color: #4f6b72;
}
.table2 td
{
    border: 1px solid #dfefdf;
}
.table2 td.alt
{
    background: #F5FAFA;
    color: #797268;
}
.table2 td a
{
    color: #099;
    /*text-decoration: underline;**/
}
td
{
    word-break: break-all;
    word-wrap: break-word;
}
.tableHeader
{
    background: url("../images/list_hd_bg.png") repeat scroll 0 0;
    color: #2e2e5a;
    font-size: 9pt;
    font-weight: bold;
    line-height: 25px;
}
.tableFooter
{
    background: url("../images/tr_foot_bg.png") repeat scroll left bottom;
    height:32px;
}
