/* 弹层样式 start */
.trs_share_popup {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999999999991;
    display: none;
}
.trs_share_box_popup {
    z-index: 99999999999999;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    width: 350px;
    overflow: hidden;
    border-radius: 4px;
    display: none;
}

.share_title{
    text-align: center;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-top: 5px;
}
.share_close {
    text-decoration: none;
    position: absolute;
    cursor: pointer;
    line-height: 20px;
    right: 10px;
    color: #888;
    font-size: 32px;
    font-weight: 200;
    opacity: 1;
    width: 30px;
    height: 30px;
}
.share_close::before,
.share_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: #888;
  transform-origin: center;
}

.share_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.share_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.share_qrcode_box img {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    margin: auto;
    width: 100%;
}
.share_qrcode_box{
    /* height: 270px; */
    padding: 0 10px 20px 10px;
}
.share_qrcode_box #shareqrcode{
    width: 100%;
    height: 100%;
    position: relative;
}
/* 弹层样式 end */

/* loading 样式start */
.share_btn_loading{
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
    opacity: 0 !important;
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.share_btn_loading_loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
/* loading 样式end */

@media (max-width: 750px) {
    .trs_share_box_popup{
        width: 75%;
    }
    .share_title{
        height: 50px;
        line-height: 50px;
    }
    .share_close{
        width: 50px;
        height: 50px;
    }
}