@charset "UTF-8";
/*
* global.css
*
*/
/* ------------------------
	reset
------------------------ */

body {
	height: 100%;
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
}

pre,
textarea {
	overflow: auto;
}

[hidden],
audio:not([controls]),
template {
	display: none;
}

details,
main,
summary {
	display: block;
}

input[type=number] {
	width: auto;
}
input[type=submit], input[type=text], button {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	cursor: pointer;
}

input[type=search] {
	-webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}
input:focus, textarea:focus, button:focus, input:active {
	outline-color: transparent;
	border: 0;
}


progress {
	display: inline-block;
}

small {
	font-size: 75%;
}

sub,
sup {
	position: relative;
	vertical-align: baseline; 
	font-size: 75%;
	line-height: 0;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

textarea {
	resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

img {
	border: 0; 
	height: auto;
}

button,
input,
select,
textarea {
	min-height: 1.5em;
	color: inherit;
	font-family: inherit; 
	font-weight: inherit;
	font-style: inherit;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer; 

	-webkit-appearance: button;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0; 
	border: 0;
}

input {
	line-height: normal;
}

code,
kbd,
pre,
samp {
	font-family: monospace,monospace;
}

ol,
ul {
	list-style: none;
}

select {
	   -moz-appearance: none;
	-webkit-appearance: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

fieldset {
	border: 0;
}

/* ------------------------
	Base
------------------------ */

html {
	font-size: 62.5%;overflow-x: hidden;
}

body {
	min-width: 320px; 
	background-color: #f4f4f4;
	word-wrap: break-word;
	color: #333;
	font-family:"Microsoft YaHei",Hiragino Sans GB, sans-serif;
	font-size: 1.4em;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	        font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}
@media print, screen and (min-width: 768px) {
	body {
		font-size: 1.6em;
	}
}

a {
	text-decoration: none; 
	color: #333;
}

a:hover,
a:active {
	color: #666;
}

a[href^="tel:"] {
	cursor: text; 
	text-decoration: none;
}

::-moz-selection {
	background-color: #000;
	color: #fff;
	text-shadow: none;
}

::selection {
	background-color: #000;
	color: #fff;
	text-shadow: none;
}
h1::-moz-selection {background-color: #000;
	color: #fff;
	text-shadow: none;
}

h1::selection {
	background-color: #000;
	color: #fff;
	text-shadow: none;
}

.fl {
  float: left;
  display: inline; 
}

.fr {
  float: right;
  display: inline; 
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.transform {
    transition:all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-transition:all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}