/*
* name: icon.css
* version: v1.0.0
* update: 心跳效果微调
* date: 2015-05-11
*/
@font-face {font-family: "ordinary";
  src: url('../font/ordinary.eot'); /* IE9*/
  src: url('../font/ordinary.eot') format('embedded-opentype'), /* IE6-IE8 */
  url('../font/ordinary.woff') format('woff'), /* chrome、firefox */
  url('../font/ordinary.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('../font/ordinary.svg') format('svg'); /* iOS 4.1- */
}

@font-face {font-family: "outline";
  src: url('../font/outline.eot'); /* IE9*/
  src: url('../font/outline.eot') format('embedded-opentype'), /* IE6-IE8 */
  url('../font/outline.woff') format('woff'), /* chrome、firefox */
  url('../font/outline.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('../font/outline.svg') format('svg'); /* iOS 4.1- */
}

[class^="ico-"] {
  display:inline-block;
  vertical-align:middle;
  margin:0 .3em;
  font-size: inherit;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;	
}

.ico-1 {
  font-family:"ordinary" !important;
}

.ico-2 {
  font-family:"outline" !important;
}
/*
/*animate*/
/*
.rotation{
  -webkit-animation: rotation  .8s infinite linear;
  animation: rotation  .8s infinite linear;
}
@-webkit-keyframes rotation {
  0% { -webkit-transform: rotateZ(0deg);}
  100% { -webkit-transform: rotateZ(360deg);}
}
@keyframes rotation {
  0% { transform: rotateZ(0deg);}
  100% { transform: rotateZ(360deg);}
}
.heartbeat{
  -webkit-animation: heartbeat  1.2s infinite ease-in;
  animation: heartbeat  1.2s infinite ease-in;
}
@-webkit-keyframes heartbeat {
  0% { -webkit-transform: scale(1);opacity: 1;}
  15% { -webkit-transform: scale(1.3);opacity: .5;}
  30% { -webkit-transform: scale(1);opacity: 1;}
}
@keyframes heartbeat {
  0% { transform: scale(1);opacity: 1;}
  15% { transform: scale(1.3);opacity: .5;}
  30% { transform: scale(1);opacity: 1;}
}
.trigger:hover{
  -webkit-animation: trigger .2s ease;
  animation: trigger .2s ease;
}
@-webkit-keyframes trigger {
  0% { -webkit-transform: rotateZ(0deg);}
  100% { -webkit-transform: rotateZ(180deg);}
}
@keyframes trigger {
  0% { transform: rotateZ(0deg);}
  100% { transform: rotateZ(180deg);}
}
*/