*{
	margin: 0 auto;
	padding: 0;
}

/*全局动画*/
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -ms-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
    transition: height 0.1s linear;
    -webkit-transition: height 0.1s linear;
    -moz-transition: height 0.1s linear;
    -ms-transition: height 0.1s linear;
    -o-transition: height 0.1s linear;
    }

*,*:after,*:before{
-webkit-box-sizing: inherit;	
box-sizing: inherit;
}

/*font*/
body{
	font-size: 9pt;
	font-family: Helvetica Neue,Helvetica,PingFang SC,  "微软雅黑" , Arial;
}

body{
	background: #F8F9FD;
}

a{
	text-decoration: none;
}

a{
	color: #888;
}

a:hover{
	color: black;
}

i{
	opacity: .5;
}

li,ul{
	list-style: none;
}

button{
	background: none;
	border: none;
}

input{
	width: 100%;
    background-color: transparent;
    height: 36px;
    color: #000000;
    font-size: 14px;
    vertical-align: inherit;
    outline: none;
    border: none;
}

input::-webkit-input-placeholder {
       /* placeholder颜色  */
        color: #aab2bd;
       /* placeholder字体大小  */
       font-size: 11px !important;
      /* placeholder位置  */
        text-align: left;
    }


.L{
	float: left;
}

.R{
	float: right;
}

/*阴影*/
.shadow{
	box-shadow: 0px 8px 20px rgba(0,0,0,.2);
}


.title h1{
	font-size: 32px;
}

.title p{
	font-size: 13px;
	line-height: 24px;
}

/*svg 动画*/
#b,#a,#c,#e{
				-webkit-transition: all 1.5s ease;
				-moz-transition: all 1.5s ease;
				-ms-transition: all 1.5s ease;
				-o-transition: all 1.5s ease;
				transition: all 1.5s ease;
			}
			
			#a{
				transition-delay: .2s;
				-moz-transition-delay: .2s; /* Firefox 4 */
				-webkit-transition-delay: .2s; /* Safari 和 Chrome */
				-o-transition-delay: .2s; /* Opera */
			}
			
			
			#b{
				transition-delay: .4s;
				-moz-transition-delay: .4s; /* Firefox 4 */
				-webkit-transition-delay: .4s; /* Safari 和 Chrome */
				-o-transition-delay: .4s; /* Opera */
			}
			#c{
				transition-delay: .6s;
				-moz-transition-delay: .6s; /* Firefox 4 */
				-webkit-transition-delay: .6s; /* Safari 和 Chrome */
				-o-transition-delay: .6s; /* Opera */
			}
			#e{
				transition-delay: .2s;
				-moz-transition-delay: .2s; /* Firefox 4 */
				-webkit-transition-delay: .2s; /* Safari 和 Chrome */
				-o-transition-delay: .2s; /* Opera */
			}

