.share_box {
    width: 108px;
    height: 115px;
    background: #f5f5f5;
    text-align: center;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.share_box .share_title {
    display: block;
    text-align: center;
    color: #00c785;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    overflow: hidden;
}

.share_box .share_title::before {
    content: '';
    display: block;
    border-top: 1px dashed #e5e5e5;
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 0;
}

.share_box .share_title span {
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 10px;
    color: #ccc;
}

.share_box .share_btn, .share_box .share_btn.share_more::after {
    /* line-height: 36px; */
    margin: 0px auto 8px;
    position: relative;
    width: 36px;
    /* height: 36px; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    display: block;
    border-radius: 50%;
}

.share_box .share_btn i {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    z-index: 2;
    color: #fff;
}

.share_box .share_btn.share_wechat {}

.share_box .share_btn.share_sina {
    background: #ff5e4d;
}

.share_box .share_btn.share_qzone {
    background: #fece00;
}

.share_box .share_btn.share_more::after {
    content: "";
    background: #a3bfd9;
    position: absolute;
    border: 0px;
    left: 0px;
    margin: 0px;
}

.share_box .share_btn.share_twitter {
    background: #6babe8;
}

.share_box .share_btn.share_facebook {
    background: #415a94;
}

.share_box .share_btn.share_linkedin {
    background: #3d84c2;
}

.share_box .share_btn:last-child {}

.share_box .share_btn .alert_box {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 6px;
    display: none;
    z-index: 2;
    padding: 1px;
    z-index: 10;
}

.share_box canvas {
    display: block;
    margin: 0 auto;
}

.share_box .share_btn .alert_box.on {
    display: block;
}

.share_box .share_more .share_btn {
    margin: 10px 0 0;
    border: 0px;
}

.share_box .share_btn:hover .alert_box {
    display: block;
}

.share_box .share_btn.share_wechat .alert_box {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 10px;
    border: 1px solid #d8d8d8;
    background: #fff;
    width: 210px;
    bottom: auto;
}

.share_box .share_btn.share_wechat .alert_box.on {
    display: block;
}

.share_box .share_btn.share_wechat .close {
    width: 24px;
    height: 24px;
    line-height: 24px;
    display: block;
    float: right;
    font-size: 16px;
    color: #333;
}

.share_box .share_btn.share_wechat .close::before {
    content: 'x';
}

.share_box .share_btn.share_wechat .title {
    line-height: 24px;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    margin: 0 0 10px;
    color: #333;
}

.share_box .share_btn.share_wechat .bottom {
    color: #666;
    line-height: 22px;
    text-align: left;
    font-size: 12px;
    margin: 10px 0 0;
}

@media screen and (max-width: 996px) {
    .share_more .only_mob::before, .share_more .only_mob::after {
        display: none !important;
    }

    .share_more {
        display: block !important;
    }


    .share_box .share_btn.share_more {
        display: block;
    }

    .share_box .share_btn .alert_box {
        left: 0px;
        top: auto;
        bottom: 100%;
    }

    .share_box .share_more .share_btn {
        margin: 0 0 10px;
    }
}

@media screen and (max-width: 479px) {
    .share_box {
        width: 58px;
        height: 100px;
    }
}