﻿.social_media_win {
    background: #fff;
    width: 490px;
    height: 220px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 8px;
    overflow: hidden;
}
.popuptit {
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin-bottom: 8px;
    position: relative;
    clear: both;
}

.close {
    width: 30px;
    height: 30px;
    display: inline-block;
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0, -50%);
    cursor: pointer;
}

.close::before,
.close::after {
    content: "";
    background: #000;
    height: 1px;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0) rotate(45deg);
    position: absolute;
}

.close::after {
    transform: translate(-50%, 0) rotate(-45deg);
}

.popinfo {
    padding: 20px 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.popinfo .icon {
    background: #fff;
    color: #666;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    width: 34px;
    height: 34px;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.popinfo .icon:hover {
    background: #f5f5f5;
}

.popinfo .medialogo {
    flex: 1;
    display: flex;
    margin: 0;
}
.mediacenter {
    justify-content: center;
}

.popinfo .medialogo a {
    flex: 0 0 75px;
    float: none;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 0;
    width: 64px;
}

.popinfo .medialogo a span {
    float: none;
    display: block;
    margin: 0 auto;
}

.popinfo .medialogo .a2a_svg {
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.popinfo .medialogo a .a2a_label {
    padding: 5px 0;
    line-height: normal;
    text-align: center;
    width: auto;
    height: auto;
    position: initial !important;
    clip-path: initial;
    overflow: initial;
    word-wrap: break-word;
}

.copyweb {
    color: #222;
    font-size: 14px;
    line-height: 30px;
    text-align: left;
    padding: 4px 4px 4px 10px;
    margin: 5px 15px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    height:40px;
}

.copyweb::after {
    content: "";
    display: block;
    clear: both;
}

.copybtn {
    background: #307b06;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    border-radius: 4px;
    float: right;
    cursor: pointer;
}

.web_href {
    display: inline-block;
    width: 75%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*黑夜模式*/
.dark .popuptit {
    background: #333;
    color: #999;
}
.dark .social_media_win {
    background-color: #2a2a2a;
    color: #fff;
}
.dark .popinfo .icon {
    background: #222;
    color: #999;
    border-color: #333;
}
.dark .copyweb {
    color: #fff;
    border-color: #333;
}