
/*share*/
.share_block {
    padding: 8px 0 0;
    display: flex;
    align-items: center;
    max-width: 1040px;
    flex-direction: column;
}

@media(max-width: 768px) {
    .share_block {
        /* background-color: #091c27d1; */
        padding: 7px 0 4px;
        border-radius: 4px;
        position: relative;
    }
}

.share_list {
    padding: 8px 0 0;
    display: flex;
    align-items: center;
    max-width: 1040px;
}

@media(max-width: 768px) {
    .share_list {
    padding: 4px 0 0;
    }
}

.share_item {
    width: 24px;
    height: 24px;
    background-size: 100%;
    /* background-color: #eee; */
    display: block;
    margin: 0 20px 0 0;
    background-repeat: no-repeat;
    opacity: 0.7;
    transition: 0.2s;
    cursor: pointer;
}

.share_item:hover {
    opacity: 1;
    transform: scale(1.2);
}

.share_item:last-child {
    margin: 0 0 0 0;
}

.share_title {
    font-size: 12px;
    font-weight: 300;
    color: #B8BEC2;
    letter-spacing: 0.05em;
    margin-top: 9px;
    text-align: center;
}

@media(max-width: 768px) {
    .share_title {
    margin-top: 6px;
    }
}

/*/share*/