/* 本地Font Awesome图标 */
@font-face {
  font-family: 'FontAwesome';
  src: url('./fonts/fontawesome-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

.fa, .fas, .fab {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 使用的图标 */
.fa-globe:before {
  content: "\f0ac";
}

.fa-code:before {
  content: "\f121";
}

.fa-tools:before {
  content: "\f7d9";
}
.fa-code:before {
  content: "\f121";
}

.fa-github:before {
  content: "\f09b";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-circle:before {
  content: "\f111";
}

.fa-map-marker:before {
  content: "\f041";
}
.fa-heart:before {
  content: "\f004";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-paper-plane:before {
  content: "\f1d8";
}
/* 添加按钮效果的样式 */
.btn-effect {
  position: relative;
  overflow: hidden;
}


.btn-effect:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-effect:hover:after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
} 