/*网站整体的背景，文字字体和大小*/
body {
	padding: 0;
	margin: 0;
	font-size: 12px;
	font-family: "宋体";
	color: #222222;
	min-width:1200px
	
}

/*A标签的样式a , a:hover, a img*/
a {
	text-decoration: none;
	color: #333;
}

a:hover {
	text-decoration: none;
	color: #333;
}

a img {
	border: none;
	margin: 0;
	padding: 0;
}

/*form,div.ul,iframe的样式*/
form {
	margin: 0;
	padding: 0;
}

div {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

iframe {
	margin: 0;
	padding: 0;
}

/******#container:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	margin: 0px;
	padding: 0px;
}*****/

.clear:after {
	content: " ";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	margin: 0px;
	padding: 0px;
	width: 0;
}

/*附件的图标*/
.fileStyle {
	width: 32px;
	height: 32px;
	display: inline-block;
	-moz-display: inline-block;;
	vertical-align: middle;
	background: url(../indexImages/TXT.png) no-repeat;
}

.pdf, .PDF {
	background: url(../indexImages/PDF.png) no-repeat;
}

.xls, .XLS {
	background: url(../indexImages/XLS.png) no-repeat;
}

.xlsx, .XLSX {
	background: url(../indexImages/XLSX.png) no-repeat;
}

.ppt, .pptx, .PPT, .PPTX {
	background: url(../indexImages/PPT.png) no-repeat;
}

.doc, .docx, .DOC, .DOCX {
	background: url(../indexImages/DOC.png) no-repeat;
}

.txt, .text, .TXT, .TEXT {
	background: url(../indexImages/TXT.png) no-repeat;
}

.png, .PNG {
	background: url(../indexImages/PNG.png) no-repeat;
}

.jpg, .JPG {
	background: url(../indexImages/JPG.png) no-repeat;
}

.jpeg, .JPEG {
	background: url(../indexImages/JPEG.png) no-repeat;
}

.gif, .GIF {
	background: url(../indexImages/GIF.png) no-repeat;
}

.avi, .AVI {
	background: url(../indexImages/AVI.png) no-repeat;
}

.mov, .MOV {
	background: url(../indexImages/MOV.png) no-repeat;
}

.ttf, .TTF {
	background: url(../indexImages/TTF.png) no-repeat;
}

.mp3, .MP3 {
	background: url(../indexImages/MP3.png) no-repeat;
}

.zip, .ZIP {
	background: url(../indexImages/ZIP.png) no-repeat;
}

.rar, .RAR {
	background: url(../indexImages/RAR.png) no-repeat;
}

.3gp, .3GP {
	background: url(../indexImages/3GP.png) no-repeat;
}

.bmp, .BMP {
	background: url(../indexImages/BMP.png) no-repeat;
}

.fl3c, .FL3C {
	background: url(../indexImages/FL3C.png) no-repeat;
}

.flv, .FLV {
	background: url(../indexImages/FLV.png) no-repeat;
}

.img, .IMG {
	background: url(../indexImages/IMG.png) no-repeat;
}

.m4a, .M4A {
	background: url(../indexImages/M4A.png) no-repeat;
}

.mkv, .MKV {
	background: url(../indexImages/MKV.png) no-repeat;
}

.mp4, .MP4 {
	background: url(../indexImages/MP4.png) no-repeat;
}

.rm, .RM {
	background: url(../indexImages/RM.png) no-repeat;
}

.rmvb, .RMVB {
	background: url(../indexImages/RMVB.png) no-repeat;
}

.tif, .TIF {
	background: url(../indexImages/TIF.png) no-repeat;
}

.wav, .WAV {
	background: url(../indexImages/WAV.png) no-repeat;
}

.wmp, .WMP {
	background: url(../indexImages/WMP.png) no-repeat;
}

.wmv, .WMV {
	background: url(../indexImages/WMV.png) no-repeat;
}
/* 图片点击放大 切换查看*/
.img-view {
	position: fixed;
	background: rgba(0, 0, 0, .5); /*支持rgba的浏览器*/
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000,
		endColorstr=#7f000000);
	background: rgba(0, 0, 0, .5); /* IE8*/
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	z-index: 100000;
}

.img-view img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.img-view-close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 32px;
	height: 32px;
	background: url("../indexImages/cancel.png") no-repeat;
	cursor: pointer;
	z-inde: 1;
	z-index: 101;
}

.img-view-pre, .img-view-next {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 48px;
	height: 48px;
	cursor: pointer;
	z-index: 101;
}

.img-view-pre {
	left: 20px;
	background: url("../indexImages/left-arrow.png") no-repeat;
}

.img-view-next {
	right: 20px;
	background: url("../indexImages/right-arrow.png") no-repeat;
}