﻿/* 定义内容-------本系统界面元素的默认样式 */

/* 应用范围-------必须链接到所有web页面 */

/* 编写规范-----只定义Html标签样式，凡自定样式（如类、ID）禁止写入 */



body /*页面主体*/
{
	font-size: 12px;
	color: #333333;
	line-height: 20px;
    margin:0;
    padding:0;
}
td /*单元格*/
{
	font-size: 12px;
	line-height: 18px;
	color: #333333;

}
input,select,textarea /*表单元素*/
{
	font-size: 12px;
	font-family: "Tahoma", "宋体";
	background-color: #FFFFFF;
	height: 18px;
	border: 1px solid #999999;

}

a:link /*链接正常状态时*/
{
	color: #333333;
	text-decoration: none;
}
a:visited /*链接被点击及访问后*/
{
	color: #333333;
	text-decoration: none;
}
a:hover /*链接被鼠标触发后*/
{
	color: #003366;
	text-decoration: none;
}
a:active /*链接被激活时*/
{
	color: #333333;
	text-decoration: none;
}

