﻿/*网站基本定义*/

*{margin:0;padding:0;}

body{
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size:12px;
    color:#333;
    line-height:22px;    
}

img{border:0px;}
ul,li{list-style:none;}
em,i{font-style:normal;}

a{ 
    text-decoration:none;     
    cursor:pointer;
    color:#727171;
}
a:hover{color:#008cd6;}


.clear{clear:both;}
.left{float:left;}
.right { float: right; }


/*** effect zoom in ***/

.img-zoom-in img 
{
transition:all .2s ease-in-out;
-webkit-transition:all .2s ease-in-out;
-moz-transition:all .2s ease-in-out;
-ms-transition:all .2s ease-in-out;
-o-transition:all .2s ease-in-out;
}

.img-zoom-in:hover img 
{
transform:scale(1.1);
-webkit-transform:scale(1.1);
-moz-transform:scale(1.1);
-ms-transform:scale(1.1);
-o-transform:scale(1.1)
}