﻿@charset "utf-8";

/*Html5*/

* {
	transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

body, html {
	font-size: 100%;
	padding: 0;
	margin: 0;
}

html, body {
	font-size: 100%;
	background: #FFf;
	overflow-x: hidden;
}

body a {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
	text-decoration: none;
	background: transparent;
 /*修正win8系统IE连接灰色背景*/
	outline: none;
	blr: expression(this.onFocus=this.blur());
}

a {
	color: #888;
	text-decoration: none;
}

a:focus {
	outline: 0;
}

a:active,
a:hover {
	outline: 0;
	text-decoration: none;
	color: #333;
}

img {
	border: 0;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	transition: transform 1s;
}

input[type="button"],input[type="submit"],li.parallelogram {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
}

p {
	margin: 0;
}

body {
	font-family: '黑体', sans-serif;
	color: #b3b9bf;
}

:focus{outline:0;}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	outline: none;
}

button,
input {
	line-height: normal;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"], 
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input.submit {
	cursor: pointer;
}

input.radio {
	width: 13px;
	height: 13px;
}

input[type="text"],
input[type="number"] {
	-webkit-appearance: none;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: none;
	-webkit-appearance: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ul,
ol,
li {
	list-style: none;
}

i, em {
	font-style: normal;
}
/*清除浮动*/
.clear {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

.clearfix:after {
	display: block;
	overflow: hidden;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
}


.fl {
    float:left;
    display: inline;
}
.fr {
    float:right;
    display: inline;
}


.por{
    position: relative;
}

.poa{
    position: absolute;
}

.pof{
    position: fixed;
}

.ovh{
    overflow: hidden;
}


