.more-services {
  position: absolute;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0);
  top: 10px;
  left: -280px;
  padding-top: 40px;
  display: none;
}

.more-services ul {
  position: relative;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .175);
  border-radius: 6px;
  background-color: #fff;
  width: 505px;
  height: 380px;
}

.more-services ul:before {
  position: absolute;
  z-index: -5;
  top: -20PX;
  right: 65px;
  display: block;
  width: 18PX;
  height: 18PX;
  content: "";
  -webkit-transform: rotate(-45deg) translateY(16PX);
  transform: rotate(-45deg) translateY(16PX);
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.more-services ul li {
  display: flex;
  justify-content: space-between;
  height: 40px;
}

.more-services ul li a {
  font-size: 16PX;
  font-weight: 400;
  font-stretch: normal;
  line-height: 42PX;
  letter-spacing: 0;
  color: #333333;
  background: #fff;
  margin: 8PX 0 0 15PX;
}

.more-services ul li a .subtext {
  width: 60px;
  height: 18px;
  background-color: #ff8817;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
  text-align: center;
}

.more-services ul li.actived a {
  color: #5d68ff;
}

.more-services-right {
  position: absolute;
  height: 380PX;
  display: block;
  top: 0;
  left: 180PX;
  display: none;
  overflow: hidden;
}

.more-services ul li.actived .more-services-right {
  display: block;
}

.more-services ul li .more-services-right a {
  position: absolute;
  bottom: 20PX;
  right: 20PX;
  width: 108PX;
  height: 34PX;
  background: transparent;
}

.more-services-right img {
  width: auto;
  display: block;
  height: 100%;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

@media only screen and (max-width:1247px) and (min-width:768px) {
  .more-services {
    top: 10px;
    padding-top: 40px;
    display: none;
  }
}

@media only screen and (max-width:768px) {
  .more-services {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 48px;
    margin-top: 12vw;
  }

  .more-services ul {
    background-color: #333333;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
  }

  .more-services ul li.actived .more-services-right {
    display: none;
  }

  .more-services ul li .more-services-right {
    display: none;
  }

  .more-services ul:before {
    display: none;
  }

  .more-services ul li {
    display: flex;
    justify-content: center;
    height: 40px;
  }

  .more-services ul li a {
    font-size: 16PX;
    font-weight: 400;
    font-stretch: normal;
    line-height: 42PX;
    letter-spacing: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0);
    margin: 8PX 0 0 15PX;
  }
}