﻿

#index_scrollsidebar {
    top: 50%;
    right: 20px;
    transition: all ease-in-out 1s;
    /* visibility: hidden; */
    opacity: 1;
    position: fixed;
    /* transform: translateY(-50%);*/
    z-index: 99999
  }

  #index_scrollsidebar ul li {
    width: 62px;
    height: 62px;
    background-color: var(--color-main);
    border-radius: 10px;
    margin-bottom: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
  }

  #index_scrollsidebar ul li .show0 {
    position: absolute;
    background-color: var(--color-main);
    padding: 6px;
    border-radius: 8px;
    right: 80px;
    top: 50%;
    transition: all ease-in-out .5s;
    transform: translateY(-50%);
    display: none
  }

  #index_scrollsidebar ul li .show0,
  #index_scrollsidebar ul li .show0 a {
    font-size: 16px;
    color: #fff;
    text-wrap: nowrap
  }

  #index_scrollsidebar ul li:hover .show0 {
    display: block
  }

  #index_scrollsidebar ul li>a {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    text-align: center;
    line-height: 62px;
    align-items: center;
    justify-content: center;
  }

  #index_scrollsidebar ul li img {
    border: none;
    vertical-align: middle;
    max-width: 50%;
  }

  #index_scrollsidebar .gototop {
    background-color: #333
  }

  #index_scrollsidebar .gototop .s_smooth {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    text-align: center;
    line-height: 62px;
    align-items: center;
    justify-content: center;
  }

  #index_scrollsidebar .gototop .s_smooth img {
    width: 23px;
  }

  .hvr-radial-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
    background: var(--color-main);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
  }

  .hvr-radial-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-main);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
  }

  .hvr-radial-out:hover,
  .hvr-radial-out:focus,
  .hvr-radial-out:active {
    color: #fff
  }

  .hvr-radial-out:hover:before,
  .hvr-radial-out:focus:before,
  .hvr-radial-out:active:before {
    -webkit-transform: scale(2);
    transform: scale(2)
  }

  @media only screen and (max-width: 1024px) {
    #index_scrollsidebar {
      display: none;
    }
  }

  .fix_slide_foot {
    display: none;
    background: var(--color-main);
    position: fixed;
    width: 100%;
    bottom: 0;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    height: 50px;
    z-index: 111;
  }

  .fix_slide_foot li {
    border-right: 1px solid white;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    align-content: center;
  }

  .fix_slide_foot li:last-of-type() {
    border-right: none;
  }

  .fix_slide_foot li a[title=email] img {
    height: 30px
  }

  .fix_slide_foot li a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    align-content: center;
  }

  .fix_slide_foot li img {
    height: 25px;
    width: auto;
  }

  .show0 img {
    width: 120px;
    margin: 0 auto 10px;
    display: block;
    max-width: unset !important;
  }

  .show0 img:last-child {
    margin-bottom: 0;
  }

  @media only screen and (max-width: 1024px) {
    #index_scrollsidebar {
      display: none;
    }

    .fix_slide_foot {
      display: flex;
    }

    body {
      padding-bottom: 50px
    }
  }