<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******************** Button样式 ********************/
/********************作用于含有button的普通页面********************/
/*
引用例子：


普通


class="btn_normal" onmouseover="this.className='btn_active'" onmouseout="this.className='btn_normal'"
加长型


class="btn_big" onmouseover="this.className='btn_active_big'" onmouseout="this.className='btn_big'"

*/

/*普通按钮平常状态*/
.btn_normal
{
BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; FONT-SIZE: 12px; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid; background:url(../images/btn.jpg);width:60px;height:21px;color:#fff;
}
/*普通按钮鼠标划过状态*/
.btn_active
{
BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; FONT-SIZE: 12px; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid; background:url(../images/btn_active.jpg);width:60px;height:21px; color:#FCFCFC;
}


/*按钮（长）平常状态*/
.btn_big
{
BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; FONT-SIZE: 12px; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid; background:url(../images/btn_big.jpg);width:100px;height:21px;color:#fff;
}
/*按钮标划过状态*/
.btn_active_big
{
BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; FONT-SIZE: 12px; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid; background:url(../images/btn_active_big.jpg);width:100px;height:21px;  color:#FCFCFC;
}

/*按钮(小)平常状态*/
.btn_small
{
BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; FONT-SIZE: 12px; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid; background:url(../images/btn_samll.jpg);width:40px;height:21px;color:#fff;
}
/*按钮(小)鼠标划过状态*/
.btn_small_active
{
BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; FONT-SIZE: 12px; BORDER-LEFT: 0px solid; BORDER-BOTTOM: 0px solid; background:url(../images/btn_small_active.jpg);width:40px;height:21px;color:#FCFCFC;
}


/* 工作流按钮样式

 BUTTON样式*/
.BtHover {
border-right:0 solid;
border-top:0 solid;
font-size:12px;
border-left:0 solid;
border-bottom:0 solid;
background:url(../images/btn_active.jpg) no-repeat;
width:60px;
height:20px;
color:#fff;
}

.BtDefault {
border-right:0 solid;
border-top:0 solid;
font-size:12px;
border-left:0 solid;
border-bottom:0 solid;
background:url(../images/btn.jpg) no-repeat;
width:60px;
height:20px;
color:#fff;
}

.BtHover_big {
border-right:0 solid;
border-top:0 solid;
font-size:12px;
border-left:0 solid;
border-bottom:0 solid;
background:url(../images/btn_active_big.jpg);
width:100px;
height:20px;
color:#fff;
}

.BtDefault_big {
border-right:0 solid;
border-top:0 solid;
font-size:12px;
border-left:0 solid;
border-bottom:0 solid;
background:url(../images/btn_big.jpg);
width:100px;
height:20px;
color:#fff;
}


.BtHover_big_s {
border-right:0 solid;
border-top:0 solid;
font-size:12px;
border-left:0 solid;
border-bottom:0 solid;
background:url(../images/btn_active_big_s.jpg);
width:120px;
height:20px;
color:#fff;
}

.BtDefault_big_s {
border-right:0 solid;
border-top:0 solid;
font-size:12px;
border-left:0 solid;
border-bottom:0 solid;
background:url(../images/btn_big_s.jpg);
width:120px;
height:20px;
color:#fff;
}</pre></body></html>