/*分享图标样式设置*/
.common-share i{
    float: none;
    display: inline-block;
    height: 23px;
    width: 23px;
    margin: 0 3px;
    border-radius: 26px;
    /*background-color: #333;*/
    position: relative;
    top: -3px;
    opacity: 0.75;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    cursor: pointer;
}
.common-share i:hover{
    opacity: 1;
}

.common-share-code-layer{
    display: none;
    border: 1px solid #eee;
    position: absolute;
    z-index: 9;
    top: -205px;
    left: -90px;
    width: 200px;
    /*height: 192px;*/
    color: #666;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px #aaa;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}
.common-share-code-layer:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -6px;
    bottom: -8px;
    border-top: 8px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.common-share-code-layer .layer-header{
    position: relative;
}
.common-share-code-layer .layer-header .code-tit{
    font-weight: normal;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
    color: #777;
}
.common-share-code-layer .layer-header .close-btn{
    padding: 10px;
    position: absolute;
    right: 0;
    top: -7px;
    font-size: 14px;
    color: #999;
    font-weight: bold;
    line-height: 16px;
    font-style: normal;
    cursor: pointer;
}
.common-share-code-layer .code-wrap{
    margin: 10px auto;
    width: 105px;
    height: 105px;
}
.common-share-code-layer .code-wrap .code-canvas {
    display: none;
}
.common-share-code-layer .code-wrap .code-img {
    width: 105px;
    height: 105px;
}
.common-share-code-layer .tips-wrap{
    font-size: 12px;
    line-height: 22px;
    color: #666;
}