.share-wrap {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: all 0.3s;
}

.share-wrap .mask {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.share-wrap .wrap {
  position: fixed;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 500px;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
}

.share-wrap .wrap .close{
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.share-wrap .wrap .close:before,
.share-wrap .wrap .close:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1px;
  margin-left: -10px;
  width: 20px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  transition: all 0.3s;
}

.share-wrap .wrap .close:hover:before,
.share-wrap .wrap .close:hover:after{
  background-color: var(--main-color);
}

.share-wrap .wrap .close:before{
  transform: rotate(45deg);
}

.share-wrap .wrap .close:after{
  transform: rotate(-45deg);
}

.share-wrap .wrap .top-wrap {
  padding: 60px 30px 30px;
}

.share-wrap .wrap .top-wrap .logo img{
  width: 140px;
  height: 37px;
  object-fit: contain;
}

.share-wrap .wrap .top-wrap .line{
  width: 1px;
  height: 120px;
  background-color: #eaeaea;
}

.share-wrap .wrap .top-wrap .qrcode-wrap{
  padding: 5px;
  width: 140px;
  height: 140px;
  border: 1px solid #e3e5e7;
  border-radius: 8px;
}

.share-wrap .wrap .top-wrap .text{
  margin-top: 10px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s;
}

.share-wrap .wrap .top-wrap .text:hover{
  color: var(--main-color);
}

.share-wrap .wrap .bot-wrap{
  padding: 30px;
  background-color: #f6f7f8;
  border-radius: 0 0 10px 10px;
}

.share-wrap .wrap .bot-wrap .share-item{
  cursor: pointer;
}

.share-wrap .wrap .bot-wrap .share-item i{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: white;
  border-radius: 50%;
}

.share-wrap .wrap .bot-wrap .share-item:hover i{
  opacity: 0.9;
}

.share-wrap .wrap .bot-wrap .share-item span{
  margin-top: 8px;
  font-size: 14px;
  color: #333333;
  transition: all 0.3s;
}

.share-wrap .wrap .bot-wrap .share-item:hover span{
  color: var(--main-color);
}

@media screen and (max-width: 767px) {
  .share-wrap .wrap{
    width: 90vw;
  }

  .share-wrap .wrap .top-wrap{
    padding: 60px 20px 20px;
  }

  .share-wrap .wrap .top-wrap .text{
    font-size: 12px;
  }

  .share-wrap .wrap .bot-wrap{
    padding: 20px;
  }

  .share-wrap .wrap .bot-wrap .share-item i{
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .share-wrap .wrap .bot-wrap .share-item span{
    font-size: 12px;
  }
}
