.RWDbase.RWDsocial002 .socialNetwork {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.RWDbase.RWDsocial002 .socialNetwork .social-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: var(--TextColorPrimary, #333);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.RWDbase.RWDsocial002 .socialNetwork .social-link.tips .tips-text {
  pointer-events: none;
  position: absolute;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  background: #000;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 3px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  font-size: 12px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.RWDbase.RWDsocial002 .socialNetwork .social-link.tips .tips-text:before {
  border-width: 5px 5px 0;
  border-color: #000 transparent transparent transparent;
  border-style: solid;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (hover: hover) {
  .RWDbase.RWDsocial002 .socialNetwork .social-link:hover {
    color: var(--ColorSecondaryHover, #666);
  }
  .RWDbase.RWDsocial002 .socialNetwork .social-link:hover .link-figure {
    background-color: #fff;
  }
  .RWDbase.RWDsocial002 .socialNetwork .social-link:hover.tips .tips-text {
    opacity: 1;
  }
}
.RWDbase.RWDsocial002 .socialNetwork .social-link .link-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.RWDbase.RWDsocial002 .socialNetwork .social-link .link-icon {
  display: block;
  width: 50%;
  height: auto;
}
.RWDbase.RWDsocial002 .socialNetwork .social-link .link-text {
  font-size: 1rem;
  text-align: center;
  margin-top: 8px;
}