div.aside-right {
  cursor: pointer;
  position: fixed;
  top: 65%;
  right: 0.1rem;
  z-index: 10000001;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  margin-top: -1rem;
}
@media screen and (max-width: 1024px) {
  div.aside-right {
    display: none;
  }
}
div.aside-right.active {
  right: 0.1rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
div.aside-right i::before {
  content: '<';
  font-weight: bold;
  color: #fff;
  font-size: 0.3rem;
  display: inline-block;
  font-family: cursive;
}
div.aside-right div.aside-to-left {
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -0.75rem;
  width: 0.25rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 0.08rem;
  background-color: #EF8200;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
div.aside-right div.aside-to-left.hide {
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
div.aside-right ul.aside-list {
  position: relative;
}
div.aside-right ul.aside-list div.aside-top-right {
  width: 100%;
  height: 25px;
  border-radius: 8px;
  background-color: #EF8200;
  text-align: center;
  line-height: 25px;
  color: #fff;
  cursor: pointer;
}
div.aside-right ul.aside-list div.aside-top-right i::before {
  content: '>';
  font-size: 0.2rem;
}
div.aside-right ul.aside-list li {
  position: relative;
}
div.aside-right ul.aside-list li:hover div.aside-item {
  transition: all 0.5s;
  display: block;
}
div.aside-right ul.aside-list li div.aside-item {
  position: absolute;
  top: 0;
  right: 0.65rem;
  display: none;
  transition: all 0.5s;
  background-color: #EF8200;
}
div.aside-right ul.aside-list li div.aside-item a {
  color: #fff;
}
div.aside-right ul.aside-list li div.aside-item.text {
  top: 50%;
  margin-top: -0.2rem;
  width: 1.6rem;
  text-align: center;
  padding: 0.1rem;
  color: #fff;
  font-size: 0.16rem;
  line-height: 1.5;
}
div.aside-right ul.aside-list li div.aside-item.pic {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #EF8200;
  padding: 5px;
}
div.aside-right ul.aside-list li div.aside-item.pic img {
  display: block;
  width: 100%;
  height: auto;
}
div.aside-right ul.aside-list li,
div.aside-right ul.aside-list div.to-top {
  width: 0.58rem;
  height: 0.58rem;
  line-height: 0.58rem;
  background-color: #EF8200;
  margin: 0.01rem 0;
  text-align: center;
  border-radius: 4px;
}
div.aside-right ul.aside-list li img,
div.aside-right ul.aside-list div.to-top img {
  display: inline-block;
  width: 0.3rem;
  height: auto;
  vertical-align: middle;
}
.bottom-window {
  display: none;
}
@media screen and (max-width: 1024px) {
  .bottom-window {
    display: block;
    width: 100%;
    height: 1.1rem;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1001;
  }
  .bottom-window ul {
    display: flex;
    height: 1.1rem;
    align-items: center;
    justify-content: space-between;
    background-color: #EF8200;
  }
  .bottom-window ul li {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-right: 1px solid #fff;
    color: #333;
    font-size: 0.28rem;
    text-align: center;
  }
  .bottom-window ul li img {
    width: 0.4rem;
    height: auto;
  }
  .bottom-window ul li span {
    display: inline-block;
    width: 100%;
    color: #fff;
  }
  .bottom-window ul li:nth-child(2) img {
    margin-top: 0.05rem;
    margin-bottom: 0.05rem;
  }
}