.bottom-info {
  width: 100%;
  box-sizing: border-box;
  padding: 50px 0;
  background: url('../../static/bottom/bg.png') center / cover;
}

.bottom-info .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.bottom-p {
  color: #fff;
  font-size: 15px;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bottom-btn-g {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20px;
  width: 300px;
  justify-content: space-between;
}

.bottom-btn {
  position: relative;
  width: 140px;
  font-size: 14px;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  height: 38px;
  background: rgba(237, 237, 237, 0.2);
}

.bottom-btn span {
  margin-right: 5px;
}

.bottom-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(30, 107, 194, 1);
}

.bottom-btn:hover .qrcode {
  opacity: 1;
  z-index: 1;
}
.bottom-btn .qrcode {
  position: absolute;
  top: -170px;
  /* right: -20px; */
  display: flex;
  border-radius: 2px;
  background-color: #fff;
  padding: 15px 15px 10px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: -1;
}
.bottom-btn .qrcode::after {
  position: absolute;
  bottom: -6px;
  /* right: 80px; */
  left: 50%;
  margin-left: -10px;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  transform: rotate(45deg);
  content: '';
}
.bottom-btn .qrcode .item {
  margin-right: 15px;
}
.bottom-btn .qrcode .item:last-child {
  margin-right: 0;
}
.bottom-btn .qrcode img {
  display: block;
  width: 100px;
  height: 100px;
  float: none;
}
.bottom-btn .qrcode p {
  padding-top: 10px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.bottom-btn .link {
  position: absolute;
  bottom: calc(100% + 15px);
  right: -20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 0;
  border-radius: 2px;
  min-width: 140px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: -1;
}
.bottom-btn:hover .link {
  opacity: 1;
  z-index: 1;
}
.bottom-btn .link::before {
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100%;
  height: 15px;
  content: '';
  background-color: transparent;
}
.bottom-btn .link::after {
  position: absolute;
  bottom: -6px;
  right: 80px;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  transform: rotate(45deg);
  content: '';
}
.bottom-btn .link a {
  position: relative;
  padding: 8px 12px;
  border-bottom: 1px solid #efefef;
  width: 100%;
  color: #333 !important;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  box-sizing: border-box;
  z-index: 2;
}
.bottom-btn .link a:hover {
  color: #fff !important;
  background-color: rgba(30, 107, 194, 0.8);
  font-size: 14px;
}

@media (max-width: 1400px) {
  .bottom-btn .qrcode {
    right: -20px;
  }
  .bottom-btn .qrcode::after {
    right: 80px;
    left: auto;
  }
}
@media (max-width: 1024px) {
  .bottom-info .inner {
    flex-direction: column;
    align-items: center;
  }

  .bottom-p {
    margin-bottom: 10px;
  }
}

