﻿body,table,select,input,textarea,button{
	font-family:微软雅黑,Arial;font-size:28px; COLOR:#333333;

}

select,input,textarea,button{outline:none;}


.small{  /* 英文字体*/
        font-size:24px;
}

.big{  /* 大字体*/
        font-size:32px;
}

.big2{  /* 大字体*/
        font-size:40px;
}

.color1{     /* 黑色*/
	COLOR: #000000;
}
.color2{    /* 白色*/
	COLOR: #ffffff;
}
.color3{    /* 血红*/
	COLOR: #D10004;
}
.color4{    /* 灰色*/
	COLOR: #999999;
}


.font1{      /* 灰色边框文字样式，用font标签调用，圆角*/
COLOR:#333333;
border:1px #CCCCCC solid;
background-color:transparent;
border-radius:0px;   /* 圆角，不兼容IE*/
padding-top:1px;
padding-bottom:1px;
padding-right:5px;
padding-left:5px;
}

.font2{      /* 红色背景文字样式，用font标签调用，圆角*/
COLOR:#ffffff;
border:1px #F71C00 solid;
background-color:#F71C00;
border-radius:0px;   /* 圆角，不兼容IE*/
padding-top:1px;
padding-bottom:1px;
padding-right:5px;
padding-left:5px;
}



/* 背景水平排列，必须用class=""，不能用style=""，否则会造成不兼容ff或google浏览器*/
.x{background-repeat:repeat-x;}

/* 背景位于底部，必须用class=""，不能用style=""，否则会造成不兼容ff或google浏览器*/
.b{background-repeat: no-repeat;background-position: bottom center;}

/* 背景绝对居中，必须用class=""，不能用style=""，否则会造成不兼容ff或google浏览器 ，也可以顶部居中 background-position: top center*/
.center{background-repeat: no-repeat;background-position: top center;}

/* 投影文字,color为影子颜色，主颜色随当前颜色*/
.fontX{
FILTER: dropshadow(color=#ffffff, offx=1, offy=1, positive=1);  width:100%; 
}
.text{
line-height:36pt;
}

.text2{
line-height:36pt;
text-indent:48px;
}

A:link,A:visited {   /* 默认链接颜色*/
	COLOR: #333333; TEXT-DECORATION: none;
}

A:hover,A:active {
	 COLOR:#B90606; TEXT-DECORATION: underline;
}



.a2 A:link,.a2 A:visited {   /* 第二链接样式，需要在父级标签加入 class="a2"*/
	COLOR: #ffffff; TEXT-DECORATION: none;
}

.a2 A:hover,.a2 A:active {
	 COLOR:#ffffff; TEXT-DECORATION: underline;
}






.editbox0{  /* 透明输入文本，用了他以后，可以任意伪装输入文本样式，兼用firefox浏览器*/
background-color: transparent;
border-width: 0px;
}

.editbox1{  
border:2px #d2d2d2 solid;
height:60px;
line-height:60px;   /* 等于height的值，让输入文本垂直居中*/
}


button {   /* 按钮综合样式*/
  display: inline-block;
  position: relative; /** 相对布局 **/
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  /* DELETE WHEN WIDTH AUTO */
}

/* 无边按钮*/
.b0{   
border:0px #D9000F solid;

color:#0C5EAA;
background-color:transparent;    /* transparent为透明*/
}

.b0:hover{ 
border:0px #D9000F solid;

color:#ffffff;
background-color:#0C5EAA;
}
 
.b0:active{ 
border:0px #D9000F solid;
color:#ffffff;
background-color:#0C5EAA;
top: 2px; /**向下偏移2px **/

}


/* 空心按钮*/
.b1{   
border:2px #999999 solid;
color:#999999;
background-color:transparent;    /* transparent为透明*/
}

.b1:hover{ 
border:2px #0C5EAA solid;
color:#ffffff;
background-color:#0C5EAA;
}
 
.b1:active{ 
border:2px #D9000F solid;
color:#000000;
background-color:#D9000F;
top: 2px; /**向下偏移2px **/

}

/* 实心按钮*/
.b2{ 
border:2px #0C5EAA solid;
color:#ffffff;
background-color:#0C5EAA;
}

.b2:hover{ 
border:2px #FF8040 solid;
color:#ffffff;
background-color:#FF8040;
}

.b2:active{ 
border:2px #FF8040 solid;
color:#ffffff;
background-color:#FF8040;
top: 2px; /**向下偏移2px **/

}


/* 底部悬浮样式*/
.bottomAD {
-webkit-box-sizing: border-box;
position: fixed;
bottom: 0;
left: 0;
z-index: 1000;
overflow: hidden;
width: 100%;
 }
    
    
.topAD {
-webkit-box-sizing: border-box;
position: fixed;
top: 0px;
left: 0px;
z-index: 1000;
overflow: hidden;
width: 100%;
  }  


.imgBox {  /* 鼠标悬浮，图片放大*/

	overflow:hidden;
}
.imgBox img {    /* 鼠标悬浮，图片放大*/

	transition:all .4s;
	-moz-transition:all .4s;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
}
.imgBox img:hover {
	transform:scale(1.2);
}
