/* CSS Document */
*{padding: 0;margin: 0; }
body{
	font-family: "SimSun", "Microsoft YaHei", "Tahoma", "SimHei", "monospace", "Arial", "Helvetica", "sans-serif";
	color: #333;
	font-size: 14px;
	outline: none;
	line-height: 26px;
	background-color: #fff;
	background-image: url(../images/index_bg.jpg);
	background-repeat: no-repeat;
	background-attachment:fixed;
}
a{text-decoration: none;color: #333;}
a:hover{color:#ff3333;cursor: pointer;}
p{font-size: 14px;}
ul li{list-style: none;}
a,img{border:0;}
textarea{border: 1px solid #EFEFEF;padding:10px;width: 250px;vertical-align: top;}
.floatL{float: left;}
.floatR{float: right;}
/*清除浮动*/
.cls{clear: both;float: none;line-height: 0px;height: 0px;overflow: hidden;visibility: hidden;}
.clearfix:after {visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}
.clearfix {	zoom:1;}
.wrap{width: 1000px;margin-right: auto;margin-left: auto;overflow: hidden;}
.full{width: 100%;margin-right: auto;margin-left: auto;}
.t12{font-size: 12px;}
.t14{font-size: 14px;}
.t16{font-size: 16px;}
.t18{font-size: 18px;}
.t25{font-size: 25px;}
.tnormal{font-weight: normal;}
.tb{font-weight: bold;}
.tred{color: #F00;}
.tgreen{color: #090;}
.tdeepred{color:#cc0000;}
.tgray{color: #999;}
.tblack{color: #000000;}
.tblack a{color: #000000;}
.tblue{color: #049;}
.theiti{font-family: "SimHei";}
.tyahei{font-family: "Microsoft YaHei";}
.tkaiti{font-family: "楷体";}
.tfangsong{font-family:"仿宋";}
.tcenter{text-align: center;}
.frame{border: 1px solid #DDD;}
.blank10,.blank15,.blank20,.blank30,.blank40{clear: both;float: none;width: 100%;}
.blank10{line-height: 10px;height: 10px;}
.blank15{line-height: 15px;height: 15px;}
.blank20{line-height: 20px;height: 20px;}
.blank30{line-height: 30px;height: 30px;}
.blank40{line-height: 40px;height: 40px;}
/* 图片放大缩小 */
img.trans{
	transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
img.trans:hover{
	transform:scale(1.1);
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	-o-transform:scale(1.1);
	-ms-transform:scale(1.1);
}