/*
 * @Author: MrJeKe
 * @Date: 2022-05-05 09:55:21
 * @LastEditors: MrJeKe
 * @LastEditTime: 2022-05-05 10:02:21
 * @FilePath: \silefuwu.com\app\scss\head.scss
 * Copyright (c) 2022 by MrJeKe, All Rights Reserved. 
 */
html {
  font-size: 16px;
}

body {
  padding-top: 80px;
}

.s-nav .navbar-light .navbar-toggler {
  color: #009DE1;
}

.s-nav .nav-p {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.s-nav .s-phone-img {
  padding-left: 7.9rem !important;
}

@media (max-width: 992px) {
  .s-nav .s-phone-img {
    padding-left: 0rem !important;
  }
}

.s-nav-link {
  position: relative;
  text-decoration: none;
}

.s-nav-link:hover {
  color: #000;
}

.s-nav-link:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  bottom: 0;
  left: 6px;
  background-color: #009DE1;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.s-nav-link:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

.footer-box {
  background-color: #009DE1;
}
/*# sourceMappingURL=head-footer.css.map */