.fixed-right-box .nav-box a:nth-of-type(1) .icon:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.fixed-right-box {
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 99;
}
.fixed-right-box .nav-box,
.fixed-right-box .to-top {
  width: 70px;
  border-radius: 70px;
  background: #fff;
  box-shadow: 0px 0px 8.55px rgba(0, 0, 0, 0.06);
}
.fixed-right-box .nav-box {
  padding: 15px 0;
}
.fixed-right-box .nav-box a {
  text-align: center;
  position: relative;
}
.fixed-right-box .nav-box a:nth-of-type(n + 2) {
  cursor: pointer;
  /*margin-top: 30px;*/
}
.fixed-right-box .nav-box a:nth-of-type(3), .fixed-right-box .nav-box a:nth-of-type(4) {
  cursor: pointer;
}
.fixed-right-box .nav-box a:nth-of-type(1) .icon {
  width: 48px;
  height: 48px;
}
.fixed-right-box .nav-box a:nth-of-type(1) .icon:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.41);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: iconAni1 1s ease-in-out infinite alternate;
}
.fixed-right-box .nav-box a:nth-of-type(1) .icon:after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0d6efd;
  z-index: 2;
}
.fixed-right-box .nav-box a:nth-of-type(1) .icon em {
  position: relative;
  z-index: 3;
}
.fixed-right-box .nav-box a:nth-of-type(2) em, .fixed-right-box .nav-box a:nth-of-type(3) em {
  animation: iconAni2 1s ease-in-out infinite alternate;
}
@keyframes iconAni1 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes iconAni2 {
  0% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  50% {
    transform: rotate(-10deg);
    transform-origin: 50% 100%;
  }
  100% {
    transform: rotate(10deg);
    transform-origin: 50% 100%;
  }
}
/*.fixed-right-box .nav-box a:hover .show-box {
  display: block;
}*/
.hovered {
  display: block !important;
}
.fixed-right-box .nav-box .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
}
.fixed-right-box .nav-box .text {
  color: #505050;
  margin-top: 10px;
}
.fixed-right-box .nav-box .show-box {
  position: absolute;
  top: 0;
  right: 48px;
  padding-right: 20px;
  display: none;
}
.fixed-right-box .nav-box .show-box .inner {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 8.55px rgba(0, 0, 0, 0.06);
}
.fixed-right-box .nav-box .show-box p {
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
.fixed-right-box .to-top {
  height: 70px;
  margin-top: 12px;
  cursor: pointer;
}

.flex-100 > * {
  flex: 1;
}

.flex-50 > * {
  width: 50%;
  flex: none;
}

.flex-33 > * {
  width: 33.33%;
  flex: none;
}

.flex-25 > * {
  width: 25%;
  flex: none;
}

.flex-50,
.flex-33,
.flex-25 {
  flex-wrap: wrap;
}

.flex-item,
.flex-100,
.flex-50,
.flex-33,
.flex-25 {
  display: flex;
  align-items: center;
  word-break: break-all;
}
.flex-item.dir-r,
.flex-100.dir-r,
.flex-50.dir-r,
.flex-33.dir-r,
.flex-25.dir-r {
  flex-direction: row;
}
.flex-item.dir-c,
.flex-100.dir-c,
.flex-50.dir-c,
.flex-33.dir-c,
.flex-25.dir-c {
  flex-direction: column;
}
.flex-item.a-t,
.flex-100.a-t,
.flex-50.a-t,
.flex-33.a-t,
.flex-25.a-t {
  align-items: flex-start;
}
.flex-item.a-b,
.flex-100.a-b,
.flex-50.a-b,
.flex-33.a-b,
.flex-25.a-b {
  align-items: flex-end;
}
.flex-item.a-s,
.flex-100.a-s,
.flex-50.a-s,
.flex-33.a-s,
.flex-25.a-s {
  align-items: stretch;
}
.flex-item.j-c,
.flex-100.j-c,
.flex-50.j-c,
.flex-33.j-c,
.flex-25.j-c {
  justify-content: center;
}
.flex-item.j-b,
.flex-100.j-b,
.flex-50.j-b,
.flex-33.j-b,
.flex-25.j-b {
  justify-content: space-between;
}
.flex-item.j-e,
.flex-100.j-e,
.flex-50.j-e,
.flex-33.j-e,
.flex-25.j-e {
  justify-content: flex-end;
}
.flex-item.j-s,
.flex-100.j-s,
.flex-50.j-s,
.flex-33.j-s,
.flex-25.j-s {
  justify-content: flex-start;
}
.flex-item.j-a,
.flex-100.j-a,
.flex-50.j-a,
.flex-33.j-a,
.flex-25.j-a {
  justify-content: space-around;
}
.flex-item.flex-wrap,
.flex-100.flex-wrap,
.flex-50.flex-wrap,
.flex-33.flex-wrap,
.flex-25.flex-wrap {
  flex-wrap: wrap;
}
.flex-item.flex-nowrap,
.flex-100.flex-nowrap,
.flex-50.flex-nowrap,
.flex-33.flex-nowrap,
.flex-25.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-item > .flexN,
.flex-100 > .flexN,
.flex-50 > .flexN,
.flex-33 > .flexN,
.flex-25 > .flexN {
  flex: none;
  max-width: 100%;
}
.flex-item > .flexA,
.flex-100 > .flexA,
.flex-50 > .flexA,
.flex-33 > .flexA,
.flex-25 > .flexA {
  flex: auto;
  overflow: hidden;
}

p {
  margin: 0;
}

.fs-12 {
  font-size: 12px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon32_1 {
  background-image: url("../img/icon/icon32_1.png");
  background-size: 100% 100%;
}

.icon32_2 {
  background-image: url("../img/icon/icon32_2.png");
  background-size: 100% 100%;
}

.icon32_3 {
  background-image: url("../img/icon/icon32_3.png");
  background-size: 100% 100%;
}

.icon32_4 {
  background-image: url("../img/icon/icon32_4.png");
  background-size: 100% 100%;
}/*# sourceMappingURL=fixedRight.css.map */