﻿/*突出显示气泡二维码*/

/*二维码标记*/

.mousecodeflag, .mousecodeflag2 {
    left: 0;
    top: 50%;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

#mousecode, #mousecode2 {
    width: 150px;
    height: 150px;
    border: 3px solid #f6f6f6;
    box-shadow: 2px 2px 4px rgba(0,0,0,.5);
    position: absolute;
    top: 21%;
    left: 19%;
    display: none;
}

    #mousecode img, #mousecode2 img {
        width: 150px;
        height: 150px;
    }
    /*两个三角形成尖角*/
    #mousecode:after, #mousecode2:after {
        border: 14px solid transparent;
        border-right: 14px solid #fff;
        width: 0;
        height: 0;
        position: absolute;
        content: ' ';
        right: 100%;
        top: 8%;
    }

    #mousecode:before, #mousecode2:before {
        border: 15px solid transparent;
        border-right: 15px solid #f6f6f6;
        width: 0;
        height: 0;
        position: absolute;
        content: ' ';
        right: 103%;
        top: 7%;
    }
