/*reset*/
body,ul,li,h2,h3,div{margin:0;padding:0;border:0;}
body{/*font-size:12px;*/ font-family:"Microsoft YaHei";}
ul{list-style-type:none;}
a{text-decoration:none;}

body{background:url(../images/beige_paper.png) left top repeat;}
@font-face {
    font-family: 'WebSymbolsRegular';
    src:url('websymbols.woff');
    src:url('websymbols.woff') format('woff'),
        url('websymbols.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* list */
.list{
	width:200px;
	height:30px;
	margin-top:5px;
}
.list li{
	width:200px;
	margin:0 auto;
	height:30px;
	margin-bottom:5px;
	background:#FFF;
	box-shadow:2px 2px 4px rgba(0, 0, 0, 0.2);
	-webkit-transition:0.3s all ease;
	-moz-transition:0.3s all ease;
	-ms-transition:0.3s all ease;
	-o-transition:0.3s all ease;
	transition:0.3s all ease;
	overflow:hidden;
	position:relative;
}
.list .border{
	height:30px;
	position:absolute;
	left:0; top:0;
	width:10px;
	overflow:hidden;
	opacity:0;
	background:#F90;
	-webkit-transition:0.3s all ease;
	-moz-transition:0.3s all ease;
	-ms-transition:0.3s all ease;
	-o-transition:0.3s all ease;
	-webkit-transition:.5s left ease;
}
.list li:hover{
	background:#000;
	box-shadow:2px 2px 4px rgba(0, 0, 0, 0.4);
}
.list li:hover .border{
	opacity:1;
	left:490px;
}
.text h2,.text a{
	font-family:"Microsoft YaHei";
	color:#333;
	text-shadow:1px 2px 4px #999;
	font-size:14px;
	font-weight:normal;
	-webkit-transition:0.3s all ease;
	-moz-transition:0.3s all ease;
	-ms-transition:0.3s all ease;
	-o-transition:0.3s all ease;
}
.text h3{
	font-family:Verdana;
	font-size:14px;
	color:#666;
	font-weight:normal;
	-webkit-transition:0.3s all ease;
	-moz-transition:0.3s all ease;
	-ms-transition:0.3s all ease;
	-o-transition:0.3s all ease;
}
.list li:hover h2,.list li:hover  a{
	color:#FFF;
	font-size:14px;
	text-shadow:1px 2px 4px #333;
}
.list li:hover .text h3{
	color:#F60;
	font-size:14px;
	margin-top:10px;
}
.list li .icon{
	width:30px;
	height:30px;
	margin-left:2px;
	margin-top:5px;
	margin-right:20px;
	float:left;
	font-size:14px;
	font-family:'WebSymbolsRegular';
	line-height:30px;
	text-align:center;
	-webkit-transition:0.3s all ease;
	-moz-transition:0.3s all ease;
	-ms-transition:0.3s all ease;
	-o-transition:0.3s all ease;
	text-shadow:0 0 3px #CCCCCC;
	background:url("../../images/type.png") no-repeat 15px 4px;
	border:  0px solid #f00;
}
.list li:hover .icon{
	color:#F90;
	font-size:14px;
	background:url("../../images/type_.png") no-repeat 20px 4px;
}
.list li:hover .text{
	-webkit-animation-name:shake;
	-moz-animation-name:shake;
}
.text{
	width:100px;
	height:30px;
	float:left;
	margin-top:4px;
	height:30px;
	/*-webkit-animation:.5s .2s ease both;
    -moz-animation:1s .2s ease both;*/
	/*-webkit-animation:.5s .2s  both;
	-moz-animation:1s .2s  both;*/
}

@-webkit-keyframes shake{
0%,100%{-webkit-transform:translateX(0);}
20%,60%{-webkit-transform:translateX(-10px);}
40%,80%{-webkit-transform:translateX(10px);}
}
@-moz-keyframes shake{
0%,100%{-moz-transform:translateX(0);}
20%,60%{-moz-transform:translateX(-10px);}
40%,80%{-moz-transform:translateX(10px);}
}